File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change 3
3
# Pick the frameworks you want:
4
4
# require "active_record/railtie"
5
5
require "action_controller/railtie"
6
- require "action_mailer/railtie"
7
6
8
7
# Test no-sprockets environment by testing the gemfile name
9
8
if SprocketsHelpers . available?
Original file line number Diff line number Diff line change 13
13
config . consider_all_requests_local = true
14
14
config . action_controller . perform_caching = false
15
15
16
- # Don't care if the mailer can't send.
17
- config . action_mailer . raise_delivery_errors = false
18
-
19
16
# Print deprecation notices to the Rails logger.
20
17
config . active_support . deprecation = :log
21
18
end
Original file line number Diff line number Diff line change 33
33
# Disable request forgery protection in test environment.
34
34
config . action_controller . allow_forgery_protection = false
35
35
36
- # Tell Action Mailer not to deliver emails to the real world.
37
- # The :test delivery method accumulates sent emails in the
38
- # ActionMailer::Base.deliveries array.
39
- config . action_mailer . delivery_method = :test
40
-
41
36
# Print deprecation notices to the stderr.
42
37
config . active_support . deprecation = :stderr
43
38
You can’t perform that action at this time.
0 commit comments