2010-09-17 19:56:32 -04:00
|
|
|
require 'rubygems'
|
2010-09-17 20:23:13 -04:00
|
|
|
require 'rspec/core/rake_task'
|
2012-01-26 08:58:25 -05:00
|
|
|
require 'cucumber/rake/task'
|
2010-09-17 19:56:32 -04:00
|
|
|
require 'yard'
|
|
|
|
|
|
|
|
desc "Run all examples"
|
2010-11-21 08:37:36 -05:00
|
|
|
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
|
|
t.rspec_opts = %w[--color]
|
|
|
|
end
|
2014-03-31 18:10:27 -04:00
|
|
|
|
2013-02-25 14:13:03 -05:00
|
|
|
RSpec::Core::RakeTask.new(:spec_with_chrome) do |t|
|
|
|
|
t.rspec_opts = %w[--color]
|
2014-03-31 18:10:27 -04:00
|
|
|
# jruby buffers the progress formatter so travis doesn't see output often enough
|
2013-11-19 16:53:06 -05:00
|
|
|
t.rspec_opts << '--format documentation' if RUBY_PLATFORM=='java'
|
2013-02-25 14:13:03 -05:00
|
|
|
t.pattern = './spec{,/*/**}/*{_spec.rb,_spec_chrome.rb}'
|
|
|
|
end
|
2010-09-17 19:56:32 -04:00
|
|
|
|
2015-05-21 14:00:36 -04:00
|
|
|
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
|
|
|
|
|
2010-09-17 19:56:32 -04:00
|
|
|
YARD::Rake::YardocTask.new do |t|
|
2012-01-06 13:15:33 -05:00
|
|
|
t.files = ['lib/**/*.rb']
|
2014-04-03 03:57:31 -04:00
|
|
|
t.options = %w(--markup=markdown)
|
2010-09-17 19:56:32 -04:00
|
|
|
end
|
|
|
|
|
2012-01-26 08:58:25 -05:00
|
|
|
Cucumber::Rake::Task.new(:cucumber) do |task|
|
|
|
|
task.cucumber_opts = ['--format=progress', 'features']
|
|
|
|
end
|
|
|
|
|
2015-05-21 14:00:36 -04:00
|
|
|
task :travis do |t|
|
|
|
|
if ENV['CAPYBARA_CHROME']
|
|
|
|
Rake::Task[:spec_chrome].invoke
|
|
|
|
else
|
|
|
|
Rake::Task[:spec].invoke
|
|
|
|
Rake::Task[:cucumber].invoke
|
|
|
|
end
|
|
|
|
end
|
2013-02-25 14:13:03 -05:00
|
|
|
|
2012-01-26 08:58:25 -05:00
|
|
|
task :default => [:spec, :cucumber]
|