mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
64 lines
2 KiB
Ruby
64 lines
2 KiB
Ruby
require 'rubygems'
|
|
require 'rspec/core/rake_task'
|
|
require 'cucumber/rake/task'
|
|
require 'yard'
|
|
|
|
desc "Run all examples with Firefox non-marionette"
|
|
RSpec::Core::RakeTask.new(:spec_firefox) do |t|
|
|
t.rspec_opts = %w[--color]
|
|
t.rspec_opts << '--format documentation' if RUBY_PLATFORM=='java'
|
|
# When we drop RSpec 2.x support we can rename spec_chrome.rb and implement this properly
|
|
# t.exclude_pattern = './spec/*{_chrome_spec.rb, _marionette_spec.rb}'
|
|
t.pattern = './spec{,/*/**}/*{_spec.rb,_spec_firefox.rb}'
|
|
end
|
|
|
|
RSpec::Core::RakeTask.new(:spec_marionette) do |t|
|
|
t.rspec_opts = %w[--color]
|
|
# jruby buffers the progress formatter so travis doesn't see output often enough
|
|
t.rspec_opts << '--format documentation' if RUBY_PLATFORM=='java'
|
|
t.pattern = './spec{,/*/**}/*{_spec.rb,_spec_marionette.rb}'
|
|
end
|
|
|
|
RSpec::Core::RakeTask.new(:spec_chrome) do |t|
|
|
t.rspec_opts = %w[--color]
|
|
# jruby buffers the progress formatter so travis doesn't see output often enough
|
|
t.rspec_opts << '--format documentation' if RUBY_PLATFORM=='java'
|
|
t.pattern = './spec/*{_spec_chrome.rb}'
|
|
end
|
|
|
|
task :spec => [:spec_marionette]
|
|
|
|
YARD::Rake::YardocTask.new do |t|
|
|
t.files = ['lib/**/*.rb']
|
|
t.options = %w(--markup=markdown)
|
|
end
|
|
|
|
Cucumber::Rake::Task.new(:cucumber) do |task|
|
|
task.cucumber_opts = ['--format=progress', 'features']
|
|
end
|
|
|
|
task :travis do |t|
|
|
if ENV['CAPYBARA_CHROME'] || ENV['CAPYBARA_CHROME_HEADLESS']
|
|
Rake::Task[:spec_chrome].invoke
|
|
elsif ENV['CAPYBARA_LEGACY_FF']
|
|
Rake::Task[:spec_firefox].invoke
|
|
Rake::Task[:cucumber].invoke
|
|
else
|
|
Rake::Task[:spec_marionette].invoke
|
|
Rake::Task[:cucumber].invoke
|
|
end
|
|
end
|
|
|
|
task :release do
|
|
version = Capybara::Poltergeist::VERSION
|
|
puts "Releasing #{version}, y/n?"
|
|
exit(1) unless STDIN.gets.chomp == 'y'
|
|
sh "git commit -am 'tagged #{version}' && " \
|
|
"git tag #{version} && " \
|
|
'gem build capybara.gemspec && ' \
|
|
"gem push capybara-#{version}.gem && " \
|
|
'git push && ' \
|
|
'git push --tags'
|
|
end
|
|
|
|
task :default => [:spec, :cucumber]
|