Runs history

This commit is contained in:
Gregory Eremin
2013-06-07 00:04:41 +04:00
parent 441acca610
commit b97f0c1a12
7 changed files with 40 additions and 3 deletions
@@ -1,6 +1,6 @@
namespace :good do
desc 'One more good task'
task :bar do
task :bar => [:foo] do
'Hey!'
end
end
@@ -0,0 +1,4 @@
desc 'One unpredictable task'
task :unpredictable do
raise 'oops' if rand(1..5) == 5
end