165 lines
4.7 KiB
Ruby
165 lines
4.7 KiB
Ruby
# require 'rubygems'
|
|
require "rake/gempackagetask"
|
|
require 'rake/rdoctask'
|
|
require "rake/clean"
|
|
gem "rspec", "1.2.6"
|
|
require 'spec'
|
|
require 'spec/rake/spectask'
|
|
require 'spec/rake/verify_rcov'
|
|
require File.expand_path('./lib/webrat.rb')
|
|
|
|
##############################################################################
|
|
# Package && release
|
|
##############################################################################
|
|
spec = Gem::Specification.new do |s|
|
|
s.name = "webrat"
|
|
s.version = Webrat::VERSION
|
|
s.platform = Gem::Platform::RUBY
|
|
s.author = "Bryan Helmkamp"
|
|
s.email = "bryan" + "@" + "brynary.com"
|
|
s.homepage = "http://github.com/brynary/webrat"
|
|
s.summary = "Webrat. Ruby Acceptance Testing for Web applications"
|
|
s.bindir = "bin"
|
|
s.description = s.summary
|
|
s.require_path = "lib"
|
|
s.files = %w(History.txt install.rb MIT-LICENSE.txt README.rdoc Rakefile) + Dir["lib/**/*"] + Dir["vendor/**/*"]
|
|
|
|
# rdoc
|
|
s.has_rdoc = true
|
|
s.extra_rdoc_files = %w(README.rdoc MIT-LICENSE.txt)
|
|
|
|
# Dependencies
|
|
s.add_dependency "nokogiri", ">= 1.2.0"
|
|
|
|
s.rubyforge_project = "webrat"
|
|
end
|
|
|
|
Rake::GemPackageTask.new(spec) do |package|
|
|
package.gem_spec = spec
|
|
end
|
|
|
|
desc 'Show information about the gem.'
|
|
task :debug_gem do
|
|
puts spec.to_ruby
|
|
end
|
|
|
|
CLEAN.include ["pkg", "*.gem", "doc", "ri", "coverage"]
|
|
|
|
desc "Upload rdoc to brynary.com"
|
|
task :publish_rdoc => :docs do
|
|
sh "scp -r doc/ brynary.com:/apps/uploads/webrat"
|
|
end
|
|
|
|
desc "Run API and Core specs"
|
|
Spec::Rake::SpecTask.new do |t|
|
|
t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
|
|
t.spec_files = FileList['spec/public/**/*_spec.rb'] + FileList['spec/private/**/*_spec.rb']
|
|
end
|
|
|
|
desc "Run all specs in spec directory with RCov"
|
|
Spec::Rake::SpecTask.new(:rcov) do |t|
|
|
t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
|
|
t.spec_files = FileList['spec/public/**/*_spec.rb'] + FileList['spec/private/**/*_spec.rb']
|
|
t.rcov = true
|
|
t.rcov_opts = lambda do
|
|
IO.readlines(File.dirname(__FILE__) + "/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
|
|
end
|
|
end
|
|
|
|
RCov::VerifyTask.new(:verify_rcov => :rcov) do |t|
|
|
t.threshold = 96.2 # Make sure you have rcov 0.7 or higher!
|
|
end
|
|
|
|
desc 'Install the package as a gem.'
|
|
task :install_gem => [:clean, :package] do
|
|
gem_filename = Dir['pkg/*.gem'].first
|
|
sh "sudo gem install --no-rdoc --no-ri --local #{gem_filename}"
|
|
end
|
|
|
|
desc "Delete generated RDoc"
|
|
task :clobber_docs do
|
|
FileUtils.rm_rf("doc")
|
|
end
|
|
|
|
desc "Generate RDoc"
|
|
task :docs => :clobber_docs do
|
|
system "hanna --title 'Webrat #{Webrat::VERSION} API Documentation'"
|
|
end
|
|
|
|
desc "Run specs using jruby"
|
|
task "spec:jruby" do
|
|
result = system "jruby -S rake spec"
|
|
raise "JRuby tests failed" unless result
|
|
end
|
|
|
|
desc "Run each spec in isolation to test for dependency issues"
|
|
task :spec_deps do
|
|
Dir["spec/**/*_spec.rb"].each do |test|
|
|
if !system("spec #{test} &> /dev/null")
|
|
puts "Dependency Issues: #{test}"
|
|
end
|
|
end
|
|
end
|
|
|
|
task :prepare do
|
|
system "ln -s ../../../../.. ./spec/integration/rails/vendor/plugins/webrat"
|
|
end
|
|
|
|
namespace :spec do
|
|
desc "Run the integration specs"
|
|
task :integration => ["integration:rails", "integration:merb", "integration:sinatra", "integration:rack"]
|
|
|
|
namespace :integration do
|
|
desc "Run the Rails integration specs"
|
|
task :rails => ['rails:webrat'] #,'rails:selenium'] currently not running selenium as it doesn't pass.
|
|
|
|
namespace :rails do
|
|
task :selenium do
|
|
Dir.chdir "spec/integration/rails" do
|
|
result = system "rake test_unit:selenium"
|
|
raise "Rails integration tests failed" unless result
|
|
end
|
|
end
|
|
|
|
task :webrat do
|
|
Dir.chdir "spec/integration/rails" do
|
|
result = system "rake test_unit:rails"
|
|
raise "Rails integration tests failed" unless result
|
|
end
|
|
end
|
|
end
|
|
|
|
desc "Run the Merb integration specs"
|
|
task :merb do
|
|
Dir.chdir "spec/integration/merb" do
|
|
result = system "rake spec"
|
|
raise "Merb integration tests failed" unless result
|
|
end
|
|
end
|
|
|
|
desc "Run the Sinatra integration specs"
|
|
task :sinatra do
|
|
Dir.chdir "spec/integration/sinatra" do
|
|
result = system "rake test"
|
|
raise "Sinatra integration tests failed" unless result
|
|
end
|
|
end
|
|
|
|
desc "Run the Sinatra integration specs"
|
|
task :rack do
|
|
Dir.chdir "spec/integration/rack" do
|
|
result = system "rake test"
|
|
raise "Rack integration tests failed" unless result
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
task :default => :spec
|
|
|
|
task :precommit => ["spec", "spec:jruby", "spec:integration"]
|
|
|
|
desc 'Removes trailing whitespace'
|
|
task :whitespace do
|
|
sh %{find . -name '*.rb' -exec sed -i '' 's/ *$//g' {} \\;}
|
|
end |