|
6 | 6 | # In the development environment your application's code is reloaded any time
|
7 | 7 | # it changes. This slows down response time but is perfect for development
|
8 | 8 | # since you don't have to restart the web server when you make code changes.
|
9 |
| - config.cache_classes = false |
| 9 | + config.enable_reloading = true |
10 | 10 |
|
11 | 11 | # Do not eager load code on boot.
|
12 | 12 | config.eager_load = false
|
|
47 | 47 | # Tell Active Support which deprecation messages to disallow.
|
48 | 48 | config.active_support.disallowed_deprecation_warnings = []
|
49 | 49 |
|
50 |
| - # Suppress logger output for asset requests. |
51 |
| - # config.assets.quiet = true |
| 50 | + # Highlight code that enqueued background job in logs. |
| 51 | + config.active_job.verbose_enqueue_logs = true |
52 | 52 |
|
53 | 53 | # Raises error for missing translations.
|
54 | 54 | # config.i18n.raise_on_missing_translations = true
|
55 | 55 |
|
56 | 56 | # Annotate rendered view with file names.
|
57 | 57 | # config.action_view.annotate_rendered_view_with_filenames = true
|
58 | 58 |
|
59 |
| - # Use an evented file watcher to asynchronously detect changes in source code, |
60 |
| - # routes, locales, etc. This feature depends on the listen gem. |
61 |
| - config.file_watcher = ActiveSupport::EventedFileUpdateChecker |
62 |
| - |
63 |
| - # Uncomment if you wish to allow Action Cable access from any origin. |
64 |
| - # config.action_cable.disable_request_forgery_protection = true |
| 59 | + # Raise error when a before_action's only/except options reference missing actions |
| 60 | + config.action_controller.raise_on_missing_callback_actions = true |
65 | 61 |
|
66 | 62 | # Allow requests for all domains e.g. <app>.dev.gov.uk
|
67 | 63 | config.hosts.clear
|
|
0 commit comments