Created
February 23, 2010 11:40
-
-
Save craigw/312091 to your computer and use it in GitHub Desktop.
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
task :prevent_brainfart_apocalypse do | |
raise "You're running in production" if Rails.env.production? | |
end | |
protect_me_from_myself_tasks = %W(db:setup) | |
protect_me_from_myself_tasks.each do |task_name| | |
Rake::Task[task_name].prerequisites << 'prevent_brainfart_apocalypse' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment