Created
October 28, 2014 14:01
-
-
Save ebouchut/fcfe1b68e6ef1130b348 to your computer and use it in GitHub Desktop.
Rake Task
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
namespace :time_travel do | |
desc "Description of the lightning task" | |
task :lightning do |t| | |
# ... | |
end | |
desc "Description of the de_lorean task" | |
task :de_lorean do |t| | |
# ... | |
end | |
desc "Travel back in time to the passed in date, prerequisites: lightning and de_lorean. Usage: rake time_travel:back 2011-07-18 17:00:00" | |
task :back, [:date] => [:lightning, :de_lorean] do |t, args| | |
# Do it | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment