Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-01-15 15:15:24 +0300
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-01-15 15:15:24 +0300
commit4da7547b6dc70cb1dbd30ad816883a883de0091d (patch)
treede9ef2247bae7ab69715caf1321cd4cc19263a7c /config/environments
parente85faec90e555a79588e185d81403ab371b4924f (diff)
Don't send (fake) email during dev bootstrap
This allows you to do: rake dev:setup BOOTSTRAP=1 and prevent dozens of letter_opener emai popups in your browser.
Diffstat (limited to 'config/environments')
-rw-r--r--config/environments/development.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/environments/development.rb b/config/environments/development.rb
index c22722c606b..257c163720a 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -34,6 +34,8 @@ Rails.application.configure do
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
# Open sent mails in browser
config.action_mailer.delivery_method = :letter_opener
+ # Don't make a mess when bootstrapping a development environment
+ config.action_mailer.perform_deliveries = (ENV['BOOTSTRAP'] != '1')
config.eager_load = false
end