comparison config/environments/development.rb @ 72:257910c60eb3

Rails 5 \o/
author nanaya <me@myconan.net>
date Fri, 13 May 2016 04:32:21 +0900
parents a2f7dfc68f44
children f67f3ad50270
comparison
equal deleted inserted replaced
71:e4cc80d72926 72:257910c60eb3
7 config.cache_classes = false 7 config.cache_classes = false
8 8
9 # Do not eager load code on boot. 9 # Do not eager load code on boot.
10 config.eager_load = false 10 config.eager_load = false
11 11
12 # Show full error reports and disable caching. 12 # Show full error reports.
13 config.consider_all_requests_local = true 13 config.consider_all_requests_local = true
14 config.action_controller.perform_caching = false 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
15 28
16 # Don't care if the mailer can't send. 29 # Don't care if the mailer can't send.
17 # config.action_mailer.raise_delivery_errors = false 30 # config.action_mailer.raise_delivery_errors = false
18 31
32 # config.action_mailer.perform_caching = false
33
19 # Print deprecation notices to the Rails logger. 34 # Print deprecation notices to the Rails logger.
20 config.active_support.deprecation = :log 35 config.active_support.deprecation = :log
21 36
37 # Raise an error on page load if there are pending migrations.
38 # config.active_record.migration_error = :page_load
39
40 # Debug mode disables concatenation and preprocessing of assets.
41 # This option may cause significant delays in view rendering with a large
42 # number of complex assets.
43 # config.assets.debug = true
44
22 # Raises error for missing translations 45 # Raises error for missing translations
23 # config.action_view.raise_on_missing_translations = true 46 # config.action_view.raise_on_missing_translations = true
47
48 # Use an evented file watcher to asynchronously detect changes in source code,
49 # routes, locales, etc. This feature depends on the listen gem.
50 # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
24 end 51 end