Last active
December 21, 2015 03:19
-
-
Save txus/6241201 to your computer and use it in GitHub Desktop.
Tasks depend on other tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task :ring_alarm do | |
puts "RIIIIIIING" | |
end | |
task :wake_up => :ring_alarm do | |
puts "Whwhoooooaaa what a nice day! Just woke up!" | |
end | |
task :dress_up => :wake_up do | |
puts "Yeah, I'm dressing up" | |
end | |
task :go_to_work => :dress_up do | |
puts "Going to work!" | |
end |
Author
txus
commented
Aug 15, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment