Created
April 7, 2010 20:28
-
-
Save twistedmind/359401 to your computer and use it in GitHub Desktop.
This file contains 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
directory "tmp" | |
file "tmp/hello.tmp" => "tmp" do | |
sh "echo 'Hello' > 'tmp/hello.tmp'" | |
end | |
task :default => 'morning:turn_off_alarm' | |
namespace :morning do | |
desc "Turn off alarm." | |
task :turn_off_alarm do | |
puts "Turned off alarm. Would have liked 5 more minutes, though." | |
end | |
desc "Take care of normal hygeine tasks." | |
task :groom_myself do | |
puts "Brushed teeth." | |
puts "Showered." | |
puts "Shaved." | |
end | |
desc "Make coffee" | |
task :make_coffee do | |
cups = ENV["COFFEE_CUPS"] || 2 | |
puts "Made #{cups} cups of coffee. Shakes are gone." | |
end | |
desc "Walk the dog" | |
task :walk_dog do | |
puts "Dog walked." | |
end | |
desc "Get ready for the day" | |
task :ready_for_the_day => [:turn_off_alarm, :groom_myself, :make_coffee, :walk_dog] do | |
puts "Ready for the day!" | |
end | |
end | |
namespace :morning do | |
task :groom_myself do | |
puts "Styled hair." | |
end | |
end | |
namespace :afternoon do | |
desc "Make afternoon coffee" | |
task :make_coffee do | |
Rake::Task['morning:make_coffee'].invoke | |
puts "Ready for the rest of the day!" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment