Skip to content

Instantly share code, notes, and snippets.

@txus
Last active December 21, 2015 03:19
Show Gist options
  • Save txus/6241201 to your computer and use it in GitHub Desktop.
Save txus/6241201 to your computer and use it in GitHub Desktop.
Tasks depend on other tasks
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
@txus
Copy link
Author

txus commented Aug 15, 2013

rake go_to_work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment