Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mathie/312095 to your computer and use it in GitHub Desktop.
Save mathie/312095 to your computer and use it in GitHub Desktop.
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.insert 0, 'prevent_brainfart_apocalypse'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment