Skip to content

Instantly share code, notes, and snippets.

@LTe
Created May 2, 2012 13:53
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 LTe/2576670 to your computer and use it in GitHub Desktop.
Save LTe/2576670 to your computer and use it in GitHub Desktop.
class Rake::Task
def overwrite(&block)
@actions.clear
enhance(&block)
end
end
Rake::Task['db:migrate'].overwrite do
puts "Without migration, srsly?"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment