Working prototype

This commit is contained in:
Gregory Eremin
2013-06-04 22:11:41 +04:00
parent 97960929cf
commit 5a3b0b8754
7 changed files with 94 additions and 29 deletions
+16 -1
View File
@@ -1 +1,16 @@
require "bundler/gem_tasks"
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