Class: Rails::Application::Configuration

Inherits:
Engine::Configuration show all
Defined in:
railties/lib/rails/application/configuration.rb

Defined Under Namespace

Classes: Custom

Instance Attribute Summary collapse

Attributes inherited from Engine::Configuration

#autoload_once_paths, #autoload_paths, #eager_load_paths, #javascript_path, #middleware, #root

Instance Method Summary collapse

Methods inherited from Engine::Configuration

#generators

Methods inherited from Railtie::Configuration

#after_initialize, #after_routes_loaded, #app_generators, #app_middleware, #before_configuration, #before_eager_load, #before_initialize, #eager_load_namespaces, eager_load_namespaces, #respond_to?, #to_prepare, #to_prepare_blocks, #watchable_dirs, #watchable_files

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'railties/lib/rails/application/configuration.rb', line 30

def initialize(*)
  super
  self.encoding                            = Encoding::UTF_8
  @allow_concurrency                       = nil
  @consider_all_requests_local             = false
  @filter_parameters                       = []
  @filter_redirect                         = []
  @helpers_paths                           = []
  if Rails.env.development?
    @hosts = ActionDispatch::HostAuthorization::ALLOWED_HOSTS_IN_DEVELOPMENT +
      ENV["RAILS_DEVELOPMENT_HOSTS"].to_s.split(",").map(&:strip)
  else
    @hosts = []
  end
  @host_authorization                      = {}
  @public_file_server                      = ActiveSupport::OrderedOptions.new
  @public_file_server.enabled              = true
  @public_file_server.index_name           = "index"
  @assume_ssl                              = false
  @force_ssl                               = false
  @ssl_options                             = {}
  @session_store                           = nil
  @time_zone                               = "UTC"
  @beginning_of_week                       = :monday
  @log_level                               = :debug
  @log_file_size                           = nil
  @generators                              = app_generators
  @cache_store                             = [ :file_store, "#{root}/tmp/cache/" ]
  @railties_order                          = [:all]
  @relative_url_root                       = ENV["RAILS_RELATIVE_URL_ROOT"]
  @reload_classes_only_on_change           = true
  @file_watcher                            = ActiveSupport::FileUpdateChecker
  @exceptions_app                          = nil
  @autoflush_log                           = true
  @log_formatter                           = ActiveSupport::Logger::SimpleFormatter.new
  @eager_load                              = nil
  @secret_key_base                         = nil
  @api_only                                = false
  @debug_exception_response_format         = nil
  @x                                       = Custom.new
  @enable_dependency_loading               = false
  @read_encrypted_secrets                  = false
  @content_security_policy                 = nil
  @content_security_policy_report_only     = false
  @content_security_policy_nonce_generator = nil
  @content_security_policy_nonce_directives = nil
  @require_master_key                      = false
  @loaded_config_version                   = nil
  @credentials                             = ActiveSupport::InheritableOptions.new(credentials_defaults)
  @disable_sandbox                         = false
  @sandbox_by_default                      = false
  @add_autoload_paths_to_load_path         = true
  @permissions_policy                      = nil
  @rake_eager_load                         = false
  @server_timing                           = false
  @dom_testing_default_html_version        = :html4
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Rails::Railtie::Configuration

Instance Attribute Details

#add_autoload_paths_to_load_pathObject

Returns the value of attribute add_autoload_paths_to_load_path.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def add_autoload_paths_to_load_path
  @add_autoload_paths_to_load_path
end

#allow_concurrencyObject

Returns the value of attribute allow_concurrency.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def allow_concurrency
  @allow_concurrency
end

#api_onlyObject

Returns the value of attribute api_only.



28
29
30
# File 'railties/lib/rails/application/configuration.rb', line 28

def api_only
  @api_only
end

#asset_hostObject

Returns the value of attribute asset_host.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def asset_host
  @asset_host
end

#assume_sslObject

Returns the value of attribute assume_ssl.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def assume_ssl
  @assume_ssl
end

#autoflush_logObject

Returns the value of attribute autoflush_log.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def autoflush_log
  @autoflush_log
end

#beginning_of_weekObject

Returns the value of attribute beginning_of_week.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def beginning_of_week
  @beginning_of_week
end

#cache_classesObject

Returns the value of attribute cache_classes.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def cache_classes
  @cache_classes
end

#cache_storeObject

Returns the value of attribute cache_store.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def cache_store
  @cache_store
end

#consider_all_requests_localObject

Returns the value of attribute consider_all_requests_local.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def consider_all_requests_local
  @consider_all_requests_local
end

#consoleObject

Returns the value of attribute console.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def console
  @console
end

#content_security_policy_nonce_directivesObject

Returns the value of attribute content_security_policy_nonce_directives.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def content_security_policy_nonce_directives
  @content_security_policy_nonce_directives
end

#content_security_policy_nonce_generatorObject

Returns the value of attribute content_security_policy_nonce_generator.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def content_security_policy_nonce_generator
  @content_security_policy_nonce_generator
end

#content_security_policy_report_onlyObject

Returns the value of attribute content_security_policy_report_only.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def content_security_policy_report_only
  @content_security_policy_report_only
end

#credentialsObject

Returns the value of attribute credentials.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def credentials
  @credentials
end

#debug_exception_response_formatObject



382
383
384
# File 'railties/lib/rails/application/configuration.rb', line 382

def debug_exception_response_format
  @debug_exception_response_format || :default
end

#disable_sandboxObject

Returns the value of attribute disable_sandbox.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def disable_sandbox
  @disable_sandbox
end

#dom_testing_default_html_versionObject

Returns the value of attribute dom_testing_default_html_version.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def dom_testing_default_html_version
  @dom_testing_default_html_version
end

#eager_loadObject

Returns the value of attribute eager_load.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def eager_load
  @eager_load
end

#encodingObject

Returns the value of attribute encoding.



28
29
30
# File 'railties/lib/rails/application/configuration.rb', line 28

def encoding
  @encoding
end

#exceptions_appObject

Returns the value of attribute exceptions_app.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def exceptions_app
  @exceptions_app
end

#file_watcherObject

Returns the value of attribute file_watcher.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def file_watcher
  @file_watcher
end

#filter_parametersObject

Returns the value of attribute filter_parameters.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def filter_parameters
  @filter_parameters
end

#filter_redirectObject

Returns the value of attribute filter_redirect.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def filter_redirect
  @filter_redirect
end

#force_sslObject

Returns the value of attribute force_ssl.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def force_ssl
  @force_ssl
end

#helpers_pathsObject

Returns the value of attribute helpers_paths.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def helpers_paths
  @helpers_paths
end

#host_authorizationObject

Returns the value of attribute host_authorization.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def host_authorization
  @host_authorization
end

#hostsObject

Returns the value of attribute hosts.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def hosts
  @hosts
end

#loaded_config_versionObject (readonly)

Returns the value of attribute loaded_config_version.



28
29
30
# File 'railties/lib/rails/application/configuration.rb', line 28

def loaded_config_version
  @loaded_config_version
end

#log_file_sizeObject

Returns the value of attribute log_file_size.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def log_file_size
  @log_file_size
end

#log_formatterObject

Returns the value of attribute log_formatter.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def log_formatter
  @log_formatter
end

#log_levelObject

Returns the value of attribute log_level.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def log_level
  @log_level
end

#log_tagsObject

Returns the value of attribute log_tags.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def log_tags
  @log_tags
end

#loggerObject

Returns the value of attribute logger.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def logger
  @logger
end

#precompile_filter_parametersObject

Returns the value of attribute precompile_filter_parameters.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def precompile_filter_parameters
  @precompile_filter_parameters
end

#public_file_serverObject

Returns the value of attribute public_file_server.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def public_file_server
  @public_file_server
end

#railties_orderObject

Returns the value of attribute railties_order.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def railties_order
  @railties_order
end

#rake_eager_loadObject

Returns the value of attribute rake_eager_load.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def rake_eager_load
  @rake_eager_load
end

#read_encrypted_secretsObject

Returns the value of attribute read_encrypted_secrets.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def read_encrypted_secrets
  @read_encrypted_secrets
end

#relative_url_rootObject

Returns the value of attribute relative_url_root.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def relative_url_root
  @relative_url_root
end

#reload_classes_only_on_changeObject

Returns the value of attribute reload_classes_only_on_change.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def reload_classes_only_on_change
  @reload_classes_only_on_change
end

#require_master_keyObject

Returns the value of attribute require_master_key.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def require_master_key
  @require_master_key
end

#sandbox_by_defaultObject

Returns the value of attribute sandbox_by_default.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def sandbox_by_default
  @sandbox_by_default
end

#secret_key_baseObject

Returns the value of attribute secret_key_base.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def secret_key_base
  @secret_key_base
end

#server_timingObject

Returns the value of attribute server_timing.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def server_timing
  @server_timing
end

#session_optionsObject

Returns the value of attribute session_options.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def session_options
  @session_options
end

#ssl_optionsObject

Returns the value of attribute ssl_options.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def ssl_options
  @ssl_options
end

#time_zoneObject

Returns the value of attribute time_zone.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def time_zone
  @time_zone
end

#xObject

Returns the value of attribute x.



14
15
16
# File 'railties/lib/rails/application/configuration.rb', line 14

def x
  @x
end

Instance Method Details

#annotationsObject



532
533
534
# File 'railties/lib/rails/application/configuration.rb', line 532

def annotations
  Rails::SourceAnnotationExtractor::Annotation
end

#autoload_lib(ignore:) ⇒ Object



464
465
466
467
468
469
470
471
472
473
474
# File 'railties/lib/rails/application/configuration.rb', line 464

def autoload_lib(ignore:)
  lib = root.join("lib")

  # Set as a string to have the same type as default autoload paths, for
  # consistency.
  autoload_paths << lib.to_s
  eager_load_paths << lib.to_s

  ignored_abspaths = Array.wrap(ignore).map { lib.join(_1) }
  Rails.autoloaders.main.ignore(ignored_abspaths)
end

#autoload_lib_once(ignore:) ⇒ Object



476
477
478
479
480
481
482
483
484
485
486
# File 'railties/lib/rails/application/configuration.rb', line 476

def autoload_lib_once(ignore:)
  lib = root.join("lib")

  # Set as a string to have the same type as default autoload paths, for
  # consistency.
  autoload_once_paths << lib.to_s
  eager_load_paths << lib.to_s

  ignored_abspaths = Array.wrap(ignore).map { lib.join(_1) }
  Rails.autoloaders.once.ignore(ignored_abspaths)
end

#colorize_loggingObject



488
489
490
# File 'railties/lib/rails/application/configuration.rb', line 488

def colorize_logging
  ActiveSupport::LogSubscriber.colorize_logging
end

#colorize_logging=(val) ⇒ Object



492
493
494
495
# File 'railties/lib/rails/application/configuration.rb', line 492

def colorize_logging=(val)
  ActiveSupport::LogSubscriber.colorize_logging = val
  generators.colorize_logging = val
end

#content_security_policy(&block) ⇒ Object

Configures the ActionDispatch::ContentSecurityPolicy.



537
538
539
540
541
542
543
# File 'railties/lib/rails/application/configuration.rb', line 537

def content_security_policy(&block)
  if block_given?
    @content_security_policy = ActionDispatch::ContentSecurityPolicy.new(&block)
  else
    @content_security_policy
  end
end

#database_configurationObject

Loads and returns the entire raw configuration of database from values stored in config/database.yml.



427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
# File 'railties/lib/rails/application/configuration.rb', line 427

def database_configuration
  path = paths["config/database"].existent.first
  yaml = Pathname.new(path) if path

  config = if yaml&.exist?
    loaded_yaml = ActiveSupport::ConfigurationFile.parse(yaml)
    if (shared = loaded_yaml.delete("shared"))
      loaded_yaml.each do |env, config|
        if config.is_a?(Hash) && config.values.all?(Hash)
          if shared.is_a?(Hash) && shared.values.all?(Hash)
            config.map do |name, sub_config|
              sub_config.reverse_merge!(shared[name])
            end
          else
            config.map do |name, sub_config|
              sub_config.reverse_merge!(shared)
            end
          end
        else
          config.reverse_merge!(shared)
        end
      end
    end
    Hash.new(shared).merge(loaded_yaml)
  elsif ENV["DATABASE_URL"]
    # Value from ENV['DATABASE_URL'] is set to default database connection
    # by Active Record.
    {}
  else
    raise "Could not load database configuration. No such file - #{paths["config/database"].instance_variable_get(:@paths)}"
  end

  config
rescue => e
  raise e, "Cannot load database configuration:\n#{e.message}", e.backtrace
end

#default_log_fileObject



554
555
556
557
558
559
560
561
562
563
564
# File 'railties/lib/rails/application/configuration.rb', line 554

def default_log_file
  path = paths["log"].first
  unless File.exist? File.dirname path
    FileUtils.mkdir_p File.dirname path
  end

  f = File.open path, "a"
  f.binmode
  f.sync = autoflush_log # if true make sure every write flushes
  f
end

#enable_dependency_loadingObject



357
358
359
360
# File 'railties/lib/rails/application/configuration.rb', line 357

def enable_dependency_loading
  Rails.deprecator.warn(ENABLE_DEPENDENCY_LOADING_WARNING)
  @enable_dependency_loading
end

#enable_dependency_loading=(value) ⇒ Object



362
363
364
365
# File 'railties/lib/rails/application/configuration.rb', line 362

def enable_dependency_loading=(value)
  Rails.deprecator.warn(ENABLE_DEPENDENCY_LOADING_WARNING)
  @enable_dependency_loading = value
end

#enable_reloadingObject



343
344
345
# File 'railties/lib/rails/application/configuration.rb', line 343

def enable_reloading
  !cache_classes
end

#enable_reloading=(value) ⇒ Object



347
348
349
# File 'railties/lib/rails/application/configuration.rb', line 347

def enable_reloading=(value)
  self.cache_classes = !value
end

#inspectObject

:nodoc:



566
567
568
# File 'railties/lib/rails/application/configuration.rb', line 566

def inspect # :nodoc:
  "#<#{self.class.name}:#{'%#016x' % (object_id << 1)}>"
end

#load_database_yamlObject

Load the config/database.yml to create the Rake tasks for multiple databases without loading the environment and filling in the environment specific configuration values.

Do not use this method, use #database_configuration instead.



409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
# File 'railties/lib/rails/application/configuration.rb', line 409

def load_database_yaml # :nodoc:
  if path = paths["config/database"].existent.first
    require "rails/application/dummy_config"
    original_rails_config = Rails.application.config

    begin
      Rails.application.config = DummyConfig.new(original_rails_config)
      ActiveSupport::ConfigurationFile.parse(Pathname.new(path))
    ensure
      Rails.application.config = original_rails_config
    end
  else
    {}
  end
end

#load_defaults(target_version) ⇒ Object

Loads default configuration values for a target version. This includes defaults for versions prior to the target version. See the configuration guide for the default values associated with a particular version.



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# File 'railties/lib/rails/application/configuration.rb', line 92

def load_defaults(target_version)
  # To introduce a change in behavior, follow these steps:
  # 1. Add an accessor on the target object (e.g. the ActiveJob class for
  #    global Active Job config).
  # 2. Set a default value there preserving existing behavior for existing
  #    applications.
  # 3. Implement the behavior change based on the config value.
  # 4. In the section below corresponding to the next release of Rails,
  #    configure the default value.
  # 5. Add a commented out section in the `new_framework_defaults` to
  #    configure the default value again.
  # 6. Update the guide in `configuring.md`.

  # To remove configurable deprecated behavior, follow these steps:
  # 1. Update or remove the entry in the guides.
  # 2. Remove the references below.
  # 3. Remove the legacy code paths and config check.
  # 4. Remove the config accessor.

  case target_version.to_s
  when "5.0"
    if respond_to?(:action_controller)
      action_controller.per_form_csrf_tokens = true
      action_controller.forgery_protection_origin_check = true
    end

    ActiveSupport.to_time_preserves_timezone = true

    if respond_to?(:active_record)
      active_record.belongs_to_required_by_default = true
    end

    self.ssl_options = { hsts: { subdomains: true } }
  when "5.1"
    load_defaults "5.0"

    if respond_to?(:assets)
      assets.unknown_asset_fallback = false
    end

    if respond_to?(:action_view)
      action_view.form_with_generates_remote_forms = true
    end
  when "5.2"
    load_defaults "5.1"

    if respond_to?(:active_record)
      active_record.cache_versioning = true
    end

    if respond_to?(:action_dispatch)
      action_dispatch.use_authenticated_cookie_encryption = true
    end

    if respond_to?(:active_support)
      active_support.use_authenticated_message_encryption = true
      active_support.hash_digest_class = OpenSSL::Digest::SHA1
    end

    if respond_to?(:action_controller)
      action_controller.default_protect_from_forgery = true
    end

    if respond_to?(:action_view)
      action_view.form_with_generates_ids = true
    end
  when "6.0"
    load_defaults "5.2"

    if respond_to?(:action_view)
      action_view.default_enforce_utf8 = false
    end

    if respond_to?(:action_dispatch)
      action_dispatch. = true
    end

    if respond_to?(:action_mailer)
      action_mailer.delivery_job = "ActionMailer::MailDeliveryJob"
    end

    if respond_to?(:active_storage)
      active_storage.queues.analysis = :active_storage_analysis
      active_storage.queues.purge    = :active_storage_purge
    end

    if respond_to?(:active_record)
      active_record.collection_cache_versioning = true
    end
  when "6.1"
    load_defaults "6.0"

    if respond_to?(:active_record)
      active_record.has_many_inversing = true
    end

    if respond_to?(:active_job)
      active_job.retry_jitter = 0.15
    end

    if respond_to?(:action_dispatch)
      action_dispatch.cookies_same_site_protection = :lax
      action_dispatch.ssl_default_redirect_status = 308
    end

    if respond_to?(:action_view)
      action_view.form_with_generates_remote_forms = false
      action_view.preload_links_header = true
    end

    if respond_to?(:active_storage)
      active_storage.track_variants = true

      active_storage.queues.analysis = nil
      active_storage.queues.purge = nil
    end

    if respond_to?(:action_mailbox)
      action_mailbox.queues.incineration = nil
      action_mailbox.queues.routing = nil
    end

    if respond_to?(:action_mailer)
      action_mailer.deliver_later_queue_name = nil
    end

    ActiveSupport.utc_to_local_returns_utc_offset_times = true
  when "7.0"
    load_defaults "6.1"

    if respond_to?(:action_dispatch)
      action_dispatch.default_headers = {
        "X-Frame-Options" => "SAMEORIGIN",
        "X-XSS-Protection" => "0",
        "X-Content-Type-Options" => "nosniff",
        "X-Download-Options" => "noopen",
        "X-Permitted-Cross-Domain-Policies" => "none",
        "Referrer-Policy" => "strict-origin-when-cross-origin"
      }
      action_dispatch.cookies_serializer = :json
    end

    if respond_to?(:action_view)
      action_view.button_to_generates_button_tag = true
      action_view.apply_stylesheet_media_default = false
    end

    if respond_to?(:active_support)
      active_support.hash_digest_class = OpenSSL::Digest::SHA256
      active_support.key_generator_hash_digest_class = OpenSSL::Digest::SHA256
      active_support.cache_format_version = 7.0
      active_support.executor_around_test_case = true
    end

    if respond_to?(:action_mailer)
      action_mailer.smtp_timeout = 5
    end

    if respond_to?(:active_storage)
      active_storage.video_preview_arguments =
        "-vf 'select=eq(n\\,0)+eq(key\\,1)+gt(scene\\,0.015),loop=loop=-1:size=2,trim=start_frame=1'" \
        " -frames:v 1 -f image2"

      active_storage.variant_processor = :vips
      active_storage.multiple_file_field_include_hidden = true
    end

    if respond_to?(:active_record)
      active_record.verify_foreign_keys_for_fixtures = true
      active_record.partial_inserts = false
      active_record.automatic_scope_inversing = true
    end

    if respond_to?(:action_controller)
      action_controller.raise_on_open_redirects = true
      action_controller.wrap_parameters_by_default = true
    end
  when "7.1"
    load_defaults "7.0"

    self.add_autoload_paths_to_load_path = false
    self.precompile_filter_parameters = true
    self.dom_testing_default_html_version = defined?(Nokogiri::HTML5) ? :html5 : :html4

    if Rails.env.local?
      self.log_file_size = 100 * 1024 * 1024
    end

    if respond_to?(:active_record)
      active_record.run_commit_callbacks_on_first_saved_instances_in_transaction = false
      active_record.commit_transaction_on_non_local_return = true
      active_record.allow_deprecated_singular_associations_name = false
      active_record.sqlite3_adapter_strict_strings_by_default = true
      active_record.query_log_tags_format = :sqlcommenter
      active_record.raise_on_assign_to_attr_readonly = true
      active_record.belongs_to_required_validates_foreign_key = false
      active_record.before_committed_on_all_records = true
      active_record.default_column_serializer = nil
      active_record.encryption.hash_digest_class = OpenSSL::Digest::SHA256
      active_record.encryption.support_sha1_for_non_deterministic_encryption = false
      active_record.marshalling_format_version = 7.1
      active_record.run_after_transaction_callbacks_in_order_defined = true
      active_record.generate_secure_token_on = :initialize
    end

    if respond_to?(:action_dispatch)
      action_dispatch.default_headers = {
        "X-Frame-Options" => "SAMEORIGIN",
        "X-XSS-Protection" => "0",
        "X-Content-Type-Options" => "nosniff",
        "X-Permitted-Cross-Domain-Policies" => "none",
        "Referrer-Policy" => "strict-origin-when-cross-origin"
      }
      action_dispatch.debug_exception_log_level = :error
    end

    if respond_to?(:active_job)
      active_job.use_big_decimal_serializer = true
    end

    if respond_to?(:active_support)
      active_support.cache_format_version = 7.1
      active_support.message_serializer = :json_allow_marshal
      active_support. = true
      active_support.raise_on_invalid_cache_expiration_time = true
    end

    if respond_to?(:action_controller)
      action_controller.allow_deprecated_parameters_hash_equality = false
    end

    if defined?(Rails::HTML::Sanitizer) # nested ifs to avoid linter errors
      if respond_to?(:action_view)
        action_view.sanitizer_vendor = Rails::HTML::Sanitizer.best_supported_vendor
      end

      if respond_to?(:action_text)
        action_text.sanitizer_vendor = Rails::HTML::Sanitizer.best_supported_vendor
      end
    end
  else
    raise "Unknown version #{target_version.to_s.inspect}"
  end

  @loaded_config_version = target_version
end

#pathsObject



388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# File 'railties/lib/rails/application/configuration.rb', line 388

def paths
  @paths ||= begin
    paths = super
    paths.add "config/database",    with: "config/database.yml"
    paths.add "config/secrets",     with: "config", glob: "secrets.yml{,.enc}"
    paths.add "config/environment", with: "config/environment.rb"
    paths.add "lib/templates"
    paths.add "log",                with: "log/#{Rails.env}.log"
    paths.add "public"
    paths.add "public/javascripts"
    paths.add "public/stylesheets"
    paths.add "tmp"
    paths
  end
end

#permissions_policy(&block) ⇒ Object

Configures the ActionDispatch::PermissionsPolicy.



546
547
548
549
550
551
552
# File 'railties/lib/rails/application/configuration.rb', line 546

def permissions_policy(&block)
  if block_given?
    @permissions_policy = ActionDispatch::PermissionsPolicy.new(&block)
  else
    @permissions_policy
  end
end

#reloading_enabled?Boolean

Returns:

  • (Boolean)


339
340
341
# File 'railties/lib/rails/application/configuration.rb', line 339

def reloading_enabled?
  enable_reloading
end

#session_store(new_session_store = nil, **options) ⇒ Object

Specifies what class to use to store the session. Possible values are :cache_store, :cookie_store, :mem_cache_store, a custom store, or :disabled. :disabled tells Rails not to deal with sessions.

Additional options will be set as session_options:

config.session_store :cookie_store, key: "_your_app_session"
config.session_options # => {key: "_your_app_session"}

If a custom store is specified as a symbol, it will be resolved to the ActionDispatch::Session namespace:

# use ActionDispatch::Session::MyCustomStore as the session store
config.session_store :my_custom_store


512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
# File 'railties/lib/rails/application/configuration.rb', line 512

def session_store(new_session_store = nil, **options)
  if new_session_store
    @session_store = new_session_store
    @session_options = options || {}
  else
    case @session_store
    when :disabled
      nil
    when Symbol
      ActionDispatch::Session.resolve_store(@session_store)
    else
      @session_store
    end
  end
end

#session_store?Boolean

:nodoc:

Returns:

  • (Boolean)


528
529
530
# File 'railties/lib/rails/application/configuration.rb', line 528

def session_store? # :nodoc:
  @session_store
end