Skip to content

Instantly share code, notes, and snippets.

@kpumuk
Created March 16, 2010 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kpumuk/334013 to your computer and use it in GitHub Desktop.
Save kpumuk/334013 to your computer and use it in GitHub Desktop.
Completely override rake task (and dismiss it's actions and prerequisites)
hello, world
task :hello do
puts 'hello'
end
Rake.application[:hello].clear
task :hello do
puts 'hello, world'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment