1
0
Fork 0
burden/Rakefile

17 lines
222 B
Ruby
Raw Normal View History

2013-06-04 18:11:41 +00:00
require 'bundler/gem_tasks'
require 'rake_control'
task :regular_task do
puts 'I am being invoked'
end
task :failing_task do
raise 'wtf'
end
task :sleepy_task do
puts 'Sleeping...'
sleep 2
puts 'Woke up!'
end