draper/Rakefile

20 lines
386 B
Ruby
Raw Normal View History

2011-08-10 13:01:22 +00:00
require 'rake'
2012-03-03 14:01:19 +00:00
# These tasks help build and release the gem
require 'bundler/gem_tasks'
2012-03-03 14:01:19 +00:00
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new do |t|
t.pattern ='spec/**/*_spec.rb'
2011-07-28 04:44:10 +00:00
end
require 'cucumber/rake/task'
Cucumber::Rake::Task.new do |t|
t.cucumber_opts = %w{--format progress}
end
desc "Run all tests for CI"
task "ci" => ["spec", "cucumber"]
task "default" => "ci"