mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
4533ebf466
I was going for :features, but :cucumber is the default task name suggested by the cucumber gem.
21 lines
493 B
Ruby
21 lines
493 B
Ruby
require 'rubygems'
|
|
require 'rspec/core/rake_task'
|
|
require 'cucumber/rake/task'
|
|
require 'yard'
|
|
|
|
desc "Run all examples"
|
|
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
#t.rspec_path = 'bin/rspec'
|
|
t.rspec_opts = %w[--color]
|
|
end
|
|
|
|
YARD::Rake::YardocTask.new do |t|
|
|
t.files = ['lib/**/*.rb']
|
|
#t.options = ['--any', '--extra', '--opts'] # optional
|
|
end
|
|
|
|
Cucumber::Rake::Task.new(:cucumber) do |task|
|
|
task.cucumber_opts = ['--format=progress', 'features']
|
|
end
|
|
|
|
task :default => [:spec, :cucumber]
|