· 9 years ago · Jan 21, 2017, 09:20 AM
1Rails.application.configure do
2 # Settings specified here will take precedence over those in config/application.rb.
3
4 # In the development environment your application's code is reloaded on
5 # every request. This slows down response time but is perfect for development
6 # since you don't have to restart the web server when you make code changes.
7 config.cache_classes = false
8
9 # Do not eager load code on boot.
10 config.eager_load = false
11
12 # Show full error reports.
13 config.consider_all_requests_local = true
14
15 # Enable/disable caching. By default caching is disabled.
16 if Rails.root.join('tmp/caching-dev.txt').exist?
17 config.action_controller.perform_caching = true
18
19 config.cache_store = :memory_store
20 config.public_file_server.headers = {
21 'Cache-Control' => 'public, max-age=172800'
22 }
23 else
24 config.action_controller.perform_caching = false
25
26 config.cache_store = :null_store
27 end
28
29 # Don't care if the mailer can't send.
30 config.action_mailer.raise_delivery_errors = false
31 config.action_mailer.perform_caching = false
32 config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
33 config.action_mailer.perform_deliveries = true
34 config.action_mailer.raise_delivery_errors = true
35 config.action_mailer.default charset: 'utf-8'
36 config.action_mailer.delivery_method = :letter_opener
37
38 # GMAIL SMTP
39
40 # config.action_mailer.delivery_method = :smtp
41 # config.action_mailer.smtp_settings = {
42 # address: 'smtp.gmail.com',
43 # port: 587,
44 # domain: 'gmail.com',
45 # authentication: 'plain',
46 # enable_starttls_auto: true,
47 # user_name: ENV['GMAIL_USERNAME'],
48 # password: ENV['GMAIL_PASSWORD']
49 # }
50
51 # Print deprecation notices to the Rails logger.
52 config.active_support.deprecation = :log
53
54 # Raise an error on page load if there are pending migrations.
55 config.active_record.migration_error = :page_load
56
57 # Debug mode disables concatenation and preprocessing of assets.
58 # This option may cause significant delays in view rendering with a large
59 # number of complex assets.
60 config.assets.debug = true
61
62 # Suppress logger output for asset requests.
63 config.assets.quiet = true
64
65 # Raises error for missing translations
66 # config.action_view.raise_on_missing_translations = true
67
68 # Use an evented file watcher to asynchronously detect changes in source code,
69 # routes, locales, etc. This feature depends on the listen gem.
70 # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
71end