middleman/Rakefile

16 lines
367 B
Text
Raw Normal View History

2010-12-23 17:18:15 -08:00
require 'bundler'
Bundler::GemHelper.install_tasks
2010-12-23 17:18:15 -08:00
require 'cucumber/rake/task'
2009-11-22 15:37:11 -08: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
2011-02-05 10:32:04 -08:00
task :test => :cucumber
2011-02-10 23:14:33 -08:00
namespace :build do
task :docs do
`rocco lib/*.rb --output=docs`
end
end