1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/Rakefile

11 lines
289 B
Ruby
Raw Normal View History

2010-12-23 20:18:15 -05:00
require 'bundler'
Bundler::GemHelper.install_tasks
2010-12-23 20:18:15 -05:00
require 'cucumber/rake/task'
2009-11-22 18:37:11 -05:00
Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'}"
end
task :default => :cucumber