Skip to content

Instantly share code, notes, and snippets.

@twistedmind
Created April 7, 2010 20:28
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save twistedmind/359401 to your computer and use it in GitHub Desktop.
Save twistedmind/359401 to your computer and use it in GitHub Desktop.
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