test/dummy/config/environments/development.rb in spina-0.6.28 vs test/dummy/config/environments/development.rb in spina-0.6.29
- old
+ new
@@ -18,24 +18,24 @@
# Expands the lines which load the assets
config.assets.debug = true
# ActionMailer Config
- config.action_mailer.default_url_options = { :host => 'spina.dev' }
+ config.action_mailer.default_url_options = { host: 'spina.dev' }
# change to false to prevent email from being sent during development
config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true
# GMail configurations
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
- :address => "smtp.gmail.com",
- :port => 587,
- :domain => 'spina.dev',
- :user_name => ENV["TEST_GMAIL_USERNAME"],
- :password => ENV["TEST_GMAIL_PASSWORD"],
- :authentication => 'plain',
- :enable_starttls_auto => true
+ address: "smtp.gmail.com",
+ port: 587,
+ domain: 'spina.dev',
+ user_name: ENV["TEST_GMAIL_USERNAME"],
+ password: ENV["TEST_GMAIL_PASSWORD"],
+ authentication: 'plain',
+ enable_starttls_auto: true
}
end