railties 6.1.4.1 → 7.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +94 -361
  3. data/MIT-LICENSE +1 -1
  4. data/RDOC_MAIN.rdoc +16 -16
  5. data/README.rdoc +0 -1
  6. data/lib/rails/app_updater.rb +2 -4
  7. data/lib/rails/application/bootstrap.rb +17 -5
  8. data/lib/rails/application/configuration.rb +51 -26
  9. data/lib/rails/application/default_middleware_stack.rb +6 -3
  10. data/lib/rails/application/finisher.rb +43 -85
  11. data/lib/rails/application/routes_reloader.rb +8 -0
  12. data/lib/rails/application.rb +24 -50
  13. data/lib/rails/application_controller.rb +2 -2
  14. data/lib/rails/autoloaders/inflector.rb +21 -0
  15. data/lib/rails/autoloaders.rb +12 -16
  16. data/lib/rails/code_statistics.rb +2 -2
  17. data/lib/rails/code_statistics_calculator.rb +10 -1
  18. data/lib/rails/command/base.rb +26 -12
  19. data/lib/rails/command/behavior.rb +1 -1
  20. data/lib/rails/command/environment_argument.rb +1 -1
  21. data/lib/rails/command.rb +8 -5
  22. data/lib/rails/commands/credentials/USAGE +4 -2
  23. data/lib/rails/commands/credentials/credentials_command/diffing.rb +26 -16
  24. data/lib/rails/commands/credentials/credentials_command.rb +8 -3
  25. data/lib/rails/commands/dbconsole/dbconsole_command.rb +10 -6
  26. data/lib/rails/commands/help/USAGE +3 -2
  27. data/lib/rails/commands/runner/runner_command.rb +3 -2
  28. data/lib/rails/commands/server/server_command.rb +2 -5
  29. data/lib/rails/configuration.rb +18 -23
  30. data/lib/rails/engine/configuration.rb +2 -2
  31. data/lib/rails/engine.rb +23 -27
  32. data/lib/rails/gem_version.rb +4 -4
  33. data/lib/rails/generators/actions/create_migration.rb +2 -4
  34. data/lib/rails/generators/actions.rb +35 -13
  35. data/lib/rails/generators/app_base.rb +66 -102
  36. data/lib/rails/generators/app_name.rb +1 -1
  37. data/lib/rails/generators/base.rb +9 -13
  38. data/lib/rails/generators/erb/scaffold/scaffold_generator.rb +2 -0
  39. data/lib/rails/generators/erb/scaffold/templates/edit.html.erb.tt +8 -4
  40. data/lib/rails/generators/erb/scaffold/templates/index.html.erb.tt +5 -27
  41. data/lib/rails/generators/erb/scaffold/templates/new.html.erb.tt +7 -3
  42. data/lib/rails/generators/erb/scaffold/templates/partial.html.erb.tt +20 -0
  43. data/lib/rails/generators/erb/scaffold/templates/show.html.erb.tt +7 -16
  44. data/lib/rails/generators/erb.rb +1 -1
  45. data/lib/rails/generators/generated_attribute.rb +40 -4
  46. data/lib/rails/generators/migration.rb +2 -6
  47. data/lib/rails/generators/model_helpers.rb +1 -1
  48. data/lib/rails/generators/named_base.rb +1 -1
  49. data/lib/rails/generators/rails/app/app_generator.rb +44 -88
  50. data/lib/rails/generators/rails/app/templates/Gemfile.tt +41 -52
  51. data/lib/rails/generators/rails/app/templates/app/assets/stylesheets/application.css.tt +2 -2
  52. data/lib/rails/generators/rails/app/templates/app/mailers/application_mailer.rb.tt +2 -2
  53. data/lib/rails/generators/rails/app/templates/app/models/application_record.rb.tt +1 -1
  54. data/lib/rails/generators/rails/app/templates/app/views/layouts/application.html.erb.tt +3 -10
  55. data/lib/rails/generators/rails/app/templates/bin/rails.tt +1 -4
  56. data/lib/rails/generators/rails/app/templates/bin/rake.tt +0 -3
  57. data/lib/rails/generators/rails/app/templates/bin/setup.tt +9 -14
  58. data/lib/rails/generators/rails/app/templates/config/boot.rb.tt +1 -1
  59. data/lib/rails/generators/rails/app/templates/config/databases/jdbc.yml.tt +2 -2
  60. data/lib/rails/generators/rails/app/templates/config/databases/jdbcmysql.yml.tt +3 -3
  61. data/lib/rails/generators/rails/app/templates/config/databases/jdbcpostgresql.yml.tt +3 -3
  62. data/lib/rails/generators/rails/app/templates/config/databases/jdbcsqlite3.yml.tt +2 -2
  63. data/lib/rails/generators/rails/app/templates/config/databases/mysql.yml.tt +3 -3
  64. data/lib/rails/generators/rails/app/templates/config/databases/oracle.yml.tt +2 -2
  65. data/lib/rails/generators/rails/app/templates/config/databases/postgresql.yml.tt +3 -3
  66. data/lib/rails/generators/rails/app/templates/config/databases/sqlite3.yml.tt +1 -1
  67. data/lib/rails/generators/rails/app/templates/config/databases/sqlserver.yml.tt +5 -5
  68. data/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt +2 -11
  69. data/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt +9 -15
  70. data/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +2 -7
  71. data/lib/rails/generators/rails/app/templates/config/initializers/assets.rb.tt +1 -5
  72. data/lib/rails/generators/rails/app/templates/config/initializers/content_security_policy.rb.tt +0 -5
  73. data/lib/rails/generators/rails/app/templates/config/initializers/cors.rb.tt +2 -2
  74. data/lib/rails/generators/rails/app/templates/config/initializers/inflections.rb.tt +4 -4
  75. data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_7_0.rb.tt +85 -0
  76. data/lib/rails/generators/rails/app/templates/config/locales/en.yml +3 -3
  77. data/lib/rails/generators/rails/app/templates/config/puma.rb.tt +1 -1
  78. data/lib/rails/generators/rails/app/templates/config/routes.rb.tt +3 -0
  79. data/lib/rails/generators/rails/app/templates/config/storage.yml.tt +5 -5
  80. data/lib/rails/generators/rails/app/templates/db/seeds.rb.tt +2 -2
  81. data/lib/rails/generators/rails/app/templates/gitattributes.tt +0 -5
  82. data/lib/rails/generators/rails/app/templates/gitignore.tt +0 -1
  83. data/lib/rails/generators/rails/app/templates/test/test_helper.rb.tt +1 -1
  84. data/lib/rails/generators/rails/controller/controller_generator.rb +1 -2
  85. data/lib/rails/generators/rails/controller/templates/controller.rb.tt +0 -4
  86. data/lib/rails/generators/rails/db/system/change/change_generator.rb +1 -1
  87. data/lib/rails/generators/rails/generator/templates/%file_name%_generator.rb.tt +1 -1
  88. data/lib/rails/generators/rails/plugin/plugin_generator.rb +40 -15
  89. data/lib/rails/generators/rails/plugin/templates/%name%.gemspec.tt +4 -2
  90. data/lib/rails/generators/rails/plugin/templates/Gemfile.tt +9 -9
  91. data/lib/rails/generators/rails/plugin/templates/README.md.tt +1 -1
  92. data/lib/rails/generators/rails/plugin/templates/app/mailers/%namespaced_name%/application_mailer.rb.tt +2 -2
  93. data/lib/rails/generators/rails/plugin/templates/app/models/%namespaced_name%/application_record.rb.tt +1 -1
  94. data/lib/rails/generators/rails/plugin/templates/app/views/layouts/%namespaced_name%/application.html.erb.tt +0 -3
  95. data/lib/rails/generators/rails/plugin/templates/bin/rails.tt +4 -4
  96. data/lib/rails/generators/rails/plugin/templates/gitignore.tt +0 -5
  97. data/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/engine.rb.tt +2 -2
  98. data/lib/rails/generators/rails/plugin/templates/lib/%namespaced_name%/version.rb.tt +1 -1
  99. data/lib/rails/generators/rails/plugin/templates/rails/boot.rb.tt +2 -2
  100. data/lib/rails/generators/rails/plugin/templates/test/test_helper.rb.tt +3 -3
  101. data/lib/rails/generators/rails/scaffold/scaffold_generator.rb +0 -19
  102. data/lib/rails/generators/rails/scaffold_controller/templates/api_controller.rb.tt +1 -5
  103. data/lib/rails/generators/rails/scaffold_controller/templates/controller.rb.tt +6 -10
  104. data/lib/rails/generators/resource_helpers.rb +2 -2
  105. data/lib/rails/generators/test_unit/generator/templates/generator_test.rb.tt +1 -1
  106. data/lib/rails/generators/test_unit/model/templates/fixtures.yml.tt +2 -2
  107. data/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +3 -3
  108. data/lib/rails/generators/test_unit/scaffold/templates/api_functional_test.rb.tt +5 -5
  109. data/lib/rails/generators/test_unit/scaffold/templates/functional_test.rb.tt +2 -2
  110. data/lib/rails/generators/test_unit/scaffold/templates/system_test.rb.tt +3 -3
  111. data/lib/rails/generators/testing/behaviour.rb +1 -2
  112. data/lib/rails/generators.rb +9 -22
  113. data/lib/rails/info.rb +1 -1
  114. data/lib/rails/info_controller.rb +1 -3
  115. data/lib/rails/initializable.rb +1 -1
  116. data/lib/rails/mailers_controller.rb +2 -4
  117. data/lib/rails/rack/logger.rb +0 -1
  118. data/lib/rails/railtie/configuration.rb +1 -2
  119. data/lib/rails/railtie.rb +9 -9
  120. data/lib/rails/ruby_version_check.rb +3 -3
  121. data/lib/rails/secrets.rb +4 -1
  122. data/lib/rails/tasks/framework.rake +2 -8
  123. data/lib/rails/tasks/statistics.rake +3 -1
  124. data/lib/rails/tasks/tmp.rake +8 -1
  125. data/lib/rails/tasks/yarn.rake +5 -1
  126. data/lib/rails/tasks/zeitwerk.rake +2 -10
  127. data/lib/rails/templates/layouts/application.html.erb +15 -0
  128. data/lib/rails/templates/rails/mailers/email.html.erb +12 -10
  129. data/lib/rails/templates/rails/welcome/index.html.erb +3 -0
  130. data/lib/rails/test_unit/railtie.rb +0 -4
  131. data/lib/rails/test_unit/runner.rb +7 -5
  132. data/lib/rails/test_unit/testing.rake +4 -9
  133. data/lib/rails.rb +1 -0
  134. metadata +35 -36
  135. data/lib/rails/command/spellchecker.rb +0 -57
  136. data/lib/rails/generators/css/assets/assets_generator.rb +0 -15
  137. data/lib/rails/generators/css/assets/templates/stylesheet.css +0 -4
  138. data/lib/rails/generators/css/scaffold/scaffold_generator.rb +0 -18
  139. data/lib/rails/generators/rails/app/templates/app/javascript/channels/consumer.js +0 -6
  140. data/lib/rails/generators/rails/app/templates/app/javascript/channels/index.js +0 -5
  141. data/lib/rails/generators/rails/app/templates/app/javascript/packs/application.js.tt +0 -23
  142. data/lib/rails/generators/rails/app/templates/bin/spring.tt +0 -13
  143. data/lib/rails/generators/rails/app/templates/bin/yarn.tt +0 -16
  144. data/lib/rails/generators/rails/app/templates/config/initializers/application_controller_renderer.rb.tt +0 -8
  145. data/lib/rails/generators/rails/app/templates/config/initializers/cookies_serializer.rb.tt +0 -5
  146. data/lib/rails/generators/rails/app/templates/config/initializers/new_framework_defaults_6_1.rb.tt +0 -67
  147. data/lib/rails/generators/rails/app/templates/config/spring.rb.tt +0 -6
  148. data/lib/rails/generators/rails/app/templates/package.json.tt +0 -11
  149. data/lib/rails/generators/rails/assets/USAGE +0 -16
  150. data/lib/rails/generators/rails/assets/assets_generator.rb +0 -26
  151. data/lib/rails/generators/rails/assets/templates/stylesheet.css +0 -4
  152. data/lib/rails/generators/rails/scaffold/templates/scaffold.css +0 -80
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2004-2020 David Heinemeier Hansson
1
+ Copyright (c) 2004-2021 David Heinemeier Hansson
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/RDOC_MAIN.rdoc CHANGED
@@ -15,21 +15,21 @@ application into three layers: Model, View, and Controller, each with a specific
15
15
  The <em><b>Model layer</b></em> represents the domain model (such as Account, Product,
16
16
  Person, Post, etc.) and encapsulates the business logic specific to
17
17
  your application. In \Rails, database-backed model classes are derived from
18
- <tt>ActiveRecord::Base</tt>. {Active Record}[link:files/activerecord/README_rdoc.html] allows you to present the data from
18
+ <tt>ActiveRecord::Base</tt>. {Active Record}[link:/files/activerecord/README_rdoc.html] allows you to present the data from
19
19
  database rows as objects and embellish these data objects with business logic
20
20
  methods. Although most \Rails models are backed by a database, models can also be ordinary
21
21
  Ruby classes, or Ruby classes that implement a set of interfaces as provided by
22
- the {Active Model}[link:files/activemodel/README_rdoc.html] module.
22
+ the {Active Model}[link:/files/activemodel/README_rdoc.html] module.
23
23
 
24
24
  == Controller layer
25
25
 
26
26
  The <em><b>Controller layer</b></em> is responsible for handling incoming HTTP requests and
27
- providing a suitable response. Usually this means returning \HTML, but \Rails controllers
27
+ providing a suitable response. Usually, this means returning \HTML, but \Rails controllers
28
28
  can also generate XML, JSON, PDFs, mobile-specific views, and more. Controllers load and
29
- manipulate models, and render view templates in order to generate the appropriate HTTP response.
29
+ manipulate models and render view templates in order to generate the appropriate HTTP response.
30
30
  In \Rails, incoming requests are routed by Action Dispatch to an appropriate controller, and
31
31
  controller classes are derived from <tt>ActionController::Base</tt>. Action Dispatch and Action Controller
32
- are bundled together in {Action Pack}[link:files/actionpack/README_rdoc.html].
32
+ are bundled together in {Action Pack}[link:/files/actionpack/README_rdoc.html].
33
33
 
34
34
  == View layer
35
35
 
@@ -37,19 +37,19 @@ The <em><b>View layer</b></em> is composed of "templates" that are responsible f
37
37
  appropriate representations of your application's resources. Templates can
38
38
  come in a variety of formats, but most view templates are \HTML with embedded
39
39
  Ruby code (ERB files). Views are typically rendered to generate a controller response,
40
- or to generate the body of an email. In \Rails, View generation is handled by {Action View}[link:files/actionview/README_rdoc.html].
40
+ or to generate the body of an email. In \Rails, View generation is handled by {Action View}[link:/files/actionview/README_rdoc.html].
41
41
 
42
42
  == Frameworks and libraries
43
43
 
44
- {Active Record}[link:files/activerecord/README_rdoc.html], {Active Model}[link:files/activemodel/README_rdoc.html],
45
- {Action Pack}[link:files/actionpack/README_rdoc.html], and {Action View}[link:files/actionview/README_rdoc.html] can each be used independently outside \Rails.
46
- In addition to that, \Rails also comes with {Action Mailer}[link:files/actionmailer/README_rdoc.html], a library
47
- to generate and send emails; {Action Mailbox}[link:files/actionmailbox/README_md.html], a library to receive emails within a Rails application;
48
- {Active Job}[link:files/activejob/README_md.html], a framework for declaring jobs and making them run on a variety of queueing
49
- backends; {Action Cable}[link:files/actioncable/README_md.html], a framework to
50
- integrate WebSockets with a \Rails application; {Active Storage}[link:files/activestorage/README_md.html],
51
- a library to attach cloud and local files to \Rails applications; {Action Text}[link:files/actiontext/README_md.html], a library to handle rich text content;
52
- and {Active Support}[link:files/activesupport/README_rdoc.html], a collection
44
+ {Active Record}[link:/files/activerecord/README_rdoc.html], {Active Model}[link:/files/activemodel/README_rdoc.html],
45
+ {Action Pack}[link:/files/actionpack/README_rdoc.html], and {Action View}[link:/files/actionview/README_rdoc.html] can each be used independently outside \Rails.
46
+ In addition to that, \Rails also comes with {Action Mailer}[link:/files/actionmailer/README_rdoc.html], a library
47
+ to generate and send emails; {Action Mailbox}[link:/files/actionmailbox/README_md.html], a library to receive emails within a Rails application;
48
+ {Active Job}[link:/files/activejob/README_md.html], a framework for declaring jobs and making them run on a variety of queueing
49
+ backends; {Action Cable}[link:/files/actioncable/README_md.html], a framework to
50
+ integrate WebSockets with a \Rails application; {Active Storage}[link:/files/activestorage/README_md.html],
51
+ a library to attach cloud and local files to \Rails applications; {Action Text}[link:/files/actiontext/README_md.html], a library to handle rich text content;
52
+ and {Active Support}[link:/files/activesupport/README_rdoc.html], a collection
53
53
  of utility classes and standard library extensions that are useful for \Rails,
54
54
  and may also be used independently outside \Rails.
55
55
 
@@ -72,7 +72,7 @@ and may also be used independently outside \Rails.
72
72
 
73
73
  Run with <tt>--help</tt> or <tt>-h</tt> for options.
74
74
 
75
- 4. Go to <tt>http://localhost:3000</tt> and you'll see: "Yay! You’re on \Rails!"
75
+ 4. Go to <tt>http://localhost:3000</tt>, and you'll see: "Yay! You’re on \Rails!"
76
76
 
77
77
  5. Follow the guidelines to start developing your application. You may find the following resources handy:
78
78
 
data/README.rdoc CHANGED
@@ -8,7 +8,6 @@ Railties is responsible for gluing all frameworks together. Overall, it:
8
8
 
9
9
  * and provides the Rails generators core.
10
10
 
11
-
12
11
  == Download
13
12
 
14
13
  The latest version of Railties can be installed with RubyGems:
@@ -13,7 +13,7 @@ module Rails
13
13
  def app_generator
14
14
  @app_generator ||= begin
15
15
  gen = Rails::Generators::AppGenerator.new ["rails"], generator_options, destination_root: Rails.root
16
- File.exist?(Rails.root.join("config", "application.rb")) ? gen.send(:app_const) : gen.send(:valid_const?)
16
+ gen.send(:valid_const?) unless File.exist?(Rails.root.join("config", "application.rb"))
17
17
  gen
18
18
  end
19
19
  end
@@ -21,15 +21,13 @@ module Rails
21
21
  private
22
22
  def generator_options
23
23
  options = { api: !!Rails.application.config.api_only, update: true }
24
- options[:skip_javascript] = !File.exist?(Rails.root.join("bin", "yarn"))
25
24
  options[:skip_active_record] = !defined?(ActiveRecord::Railtie)
26
25
  options[:skip_active_storage] = !defined?(ActiveStorage::Engine) || !defined?(ActiveRecord::Railtie)
27
26
  options[:skip_action_mailer] = !defined?(ActionMailer::Railtie)
28
27
  options[:skip_action_cable] = !defined?(ActionCable::Engine)
29
28
  options[:skip_sprockets] = !defined?(Sprockets::Railtie)
30
- options[:skip_puma] = !defined?(Puma)
31
29
  options[:skip_bootsnap] = !defined?(Bootsnap)
32
- options[:skip_spring] = !defined?(Spring)
30
+ options[:updating] = true
33
31
  options
34
32
  end
35
33
  end
@@ -44,7 +44,7 @@ module Rails
44
44
  logger.level = ActiveSupport::Logger::WARN
45
45
  logger.warn(
46
46
  "Rails Error: Unable to access log file. Please ensure that #{path} exists and is writable " \
47
- "(ie, make it writable for user and group: chmod 0664 #{path}). " \
47
+ "(i.e. make it writable for user and group: chmod 0664 #{path}). " \
48
48
  "The log level has been raised to WARN and the output directed to STDERR until the problem is fixed."
49
49
  )
50
50
  logger
@@ -59,14 +59,26 @@ module Rails
59
59
  Rails.cache = ActiveSupport::Cache.lookup_store(*config.cache_store)
60
60
 
61
61
  if Rails.cache.respond_to?(:middleware)
62
- config.middleware.insert_before(::Rack::Runtime, Rails.cache.middleware)
62
+ config.middleware.insert_after(ActionDispatch::Executor, Rails.cache.middleware)
63
63
  end
64
64
  end
65
65
  end
66
66
 
67
- # Sets the dependency loading mechanism.
68
- initializer :initialize_dependency_mechanism, group: :all do
69
- ActiveSupport::Dependencies.mechanism = config.cache_classes ? :require : :load
67
+ # We setup the once autoloader this early so that engines and applications
68
+ # are able to autoload from these paths during initialization.
69
+ initializer :setup_once_autoloader do
70
+ autoloader = Rails.autoloaders.once
71
+
72
+ ActiveSupport::Dependencies.autoload_once_paths.freeze
73
+ ActiveSupport::Dependencies.autoload_once_paths.uniq.each do |path|
74
+ # Zeitwerk only accepts existing directories in `push_dir`.
75
+ next unless File.directory?(path)
76
+
77
+ autoloader.push_dir(path)
78
+ autoloader.do_not_eager_load(path) unless ActiveSupport::Dependencies.eager_load?(path)
79
+ end
80
+
81
+ autoloader.setup
70
82
  end
71
83
 
72
84
  initializer :bootstrap_hook, group: :all do |app|
@@ -2,7 +2,6 @@
2
2
 
3
3
  require "ipaddr"
4
4
  require "active_support/core_ext/kernel/reporting"
5
- require "active_support/core_ext/symbol/starts_ends_with"
6
5
  require "active_support/file_update_checker"
7
6
  require "active_support/configuration_file"
8
7
  require "rails/engine/configuration"
@@ -24,7 +23,7 @@ module Rails
24
23
  :require_master_key, :credentials, :disable_sandbox, :add_autoload_paths_to_load_path,
25
24
  :rake_eager_load
26
25
 
27
- attr_reader :encoding, :api_only, :loaded_config_version, :autoloader
26
+ attr_reader :encoding, :api_only, :loaded_config_version
28
27
 
29
28
  def initialize(*)
30
29
  super
@@ -35,6 +34,7 @@ module Rails
35
34
  @filter_redirect = []
36
35
  @helpers_paths = []
37
36
  @hosts = Array(([".localhost", IPAddr.new("0.0.0.0/0"), IPAddr.new("::/0")] if Rails.env.development?))
37
+ @hosts.concat(ENV["RAILS_DEVELOPMENT_HOSTS"].to_s.split(",").map(&:strip)) if Rails.env.development?
38
38
  @host_authorization = {}
39
39
  @public_file_server = ActiveSupport::OrderedOptions.new
40
40
  @public_file_server.enabled = true
@@ -70,7 +70,6 @@ module Rails
70
70
  @credentials = ActiveSupport::OrderedOptions.new
71
71
  @credentials.content_path = default_credentials_content_path
72
72
  @credentials.key_path = default_credentials_key_path
73
- @autoloader = :classic
74
73
  @disable_sandbox = false
75
74
  @add_autoload_paths_to_load_path = true
76
75
  @permissions_policy = nil
@@ -116,7 +115,7 @@ module Rails
116
115
 
117
116
  if respond_to?(:active_support)
118
117
  active_support.use_authenticated_message_encryption = true
119
- active_support.hash_digest_class = ::Digest::SHA1
118
+ active_support.hash_digest_class = OpenSSL::Digest::SHA1
120
119
  end
121
120
 
122
121
  if respond_to?(:action_controller)
@@ -129,8 +128,6 @@ module Rails
129
128
  when "6.0"
130
129
  load_defaults "5.2"
131
130
 
132
- self.autoloader = :zeitwerk if RUBY_ENGINE == "ruby"
133
-
134
131
  if respond_to?(:action_view)
135
132
  action_view.default_enforce_utf8 = false
136
133
  end
@@ -156,17 +153,11 @@ module Rails
156
153
  when "6.1"
157
154
  load_defaults "6.0"
158
155
 
159
- self.autoloader = :zeitwerk if %w[ruby truffleruby].include?(RUBY_ENGINE)
160
-
161
156
  if respond_to?(:active_record)
162
157
  active_record.has_many_inversing = true
163
158
  active_record.legacy_connection_handling = false
164
159
  end
165
160
 
166
- if respond_to?(:active_storage)
167
- active_storage.track_variants = true
168
- end
169
-
170
161
  if respond_to?(:active_job)
171
162
  active_job.retry_jitter = 0.15
172
163
  active_job.skip_after_callbacks_if_terminated = true
@@ -187,6 +178,8 @@ module Rails
187
178
  end
188
179
 
189
180
  if respond_to?(:active_storage)
181
+ active_storage.track_variants = true
182
+
190
183
  active_storage.queues.analysis = nil
191
184
  active_storage.queues.purge = nil
192
185
  end
@@ -201,6 +194,50 @@ module Rails
201
194
  end
202
195
 
203
196
  ActiveSupport.utc_to_local_returns_utc_offset_times = true
197
+ when "7.0"
198
+ load_defaults "6.1"
199
+
200
+ if respond_to?(:action_dispatch)
201
+ action_dispatch.return_only_request_media_type_on_content_type = false
202
+ action_dispatch.cookies_serializer = :json
203
+ end
204
+
205
+ if respond_to?(:action_controller)
206
+ action_controller.silence_disabled_session_errors = false
207
+ end
208
+
209
+ if respond_to?(:action_view)
210
+ action_view.button_to_generates_button_tag = true
211
+ action_view.apply_stylesheet_media_default = false
212
+ end
213
+
214
+ if respond_to?(:active_support)
215
+ active_support.hash_digest_class = OpenSSL::Digest::SHA256
216
+ active_support.key_generator_hash_digest_class = OpenSSL::Digest::SHA256
217
+ active_support.remove_deprecated_time_with_zone_name = true
218
+ active_support.cache_format_version = 7.0
219
+ end
220
+
221
+ if respond_to?(:action_mailer)
222
+ action_mailer.smtp_timeout = 5
223
+ end
224
+
225
+ if respond_to?(:active_storage)
226
+ active_storage.video_preview_arguments =
227
+ "-vf 'select=eq(n\\,0)+eq(key\\,1)+gt(scene\\,0.015),loop=loop=-1:size=2,trim=start_frame=1'" \
228
+ " -frames:v 1 -f image2"
229
+
230
+ active_storage.variant_processor = :vips
231
+ end
232
+
233
+ if respond_to?(:active_record)
234
+ active_record.verify_foreign_keys_for_fixtures = true
235
+ active_record.partial_inserts = false
236
+ end
237
+
238
+ if respond_to?(:action_controller)
239
+ action_controller.raise_on_open_redirects = true
240
+ end
204
241
  else
205
242
  raise "Unknown version #{target_version.to_s.inspect}"
206
243
  end
@@ -331,7 +368,7 @@ module Rails
331
368
  end
332
369
  end
333
370
 
334
- def session_store? #:nodoc:
371
+ def session_store? # :nodoc:
335
372
  @session_store
336
373
  end
337
374
 
@@ -355,18 +392,6 @@ module Rails
355
392
  end
356
393
  end
357
394
 
358
- def autoloader=(autoloader)
359
- case autoloader
360
- when :classic
361
- @autoloader = autoloader
362
- when :zeitwerk
363
- require "zeitwerk"
364
- @autoloader = autoloader
365
- else
366
- raise ArgumentError, "config.autoloader may be :classic or :zeitwerk, got #{autoloader.inspect} instead"
367
- end
368
- end
369
-
370
395
  def default_log_file
371
396
  path = paths["log"].first
372
397
  unless File.exist? File.dirname path
@@ -379,7 +404,7 @@ module Rails
379
404
  f
380
405
  end
381
406
 
382
- class Custom #:nodoc:
407
+ class Custom # :nodoc:
383
408
  def initialize
384
409
  @configurations = Hash.new
385
410
  end
@@ -42,7 +42,7 @@ module Rails
42
42
 
43
43
  middleware.use ::ActionDispatch::Executor, app.executor
44
44
 
45
- middleware.use ::Rack::Runtime
45
+ middleware.use ::ActionDispatch::MiddlewareStack::FakeRuntime
46
46
  middleware.use ::Rack::MethodOverride unless config.api_only
47
47
  middleware.use ::ActionDispatch::RequestId, header: config.action_dispatch.request_id_header
48
48
  middleware.use ::ActionDispatch::RemoteIp, config.action_dispatch.ip_spoofing_check, config.action_dispatch.trusted_proxies
@@ -50,7 +50,10 @@ module Rails
50
50
  middleware.use ::Rails::Rack::Logger, config.log_tags
51
51
  middleware.use ::ActionDispatch::ShowExceptions, show_exceptions_app
52
52
  middleware.use ::ActionDispatch::DebugExceptions, app, config.debug_exception_response_format
53
- middleware.use ::ActionDispatch::ActionableExceptions
53
+
54
+ if config.consider_all_requests_local
55
+ middleware.use ::ActionDispatch::ActionableExceptions
56
+ end
54
57
 
55
58
  unless config.cache_classes
56
59
  middleware.use ::ActionDispatch::Reloader, app.reloader
@@ -64,10 +67,10 @@ module Rails
64
67
  config.session_options[:secure] = true
65
68
  end
66
69
  middleware.use config.session_store, config.session_options
67
- middleware.use ::ActionDispatch::Flash
68
70
  end
69
71
 
70
72
  unless config.api_only
73
+ middleware.use ::ActionDispatch::Flash
71
74
  middleware.use ::ActionDispatch::ContentSecurityPolicy::Middleware
72
75
  middleware.use ::ActionDispatch::PermissionsPolicy::Middleware
73
76
  end
@@ -1,7 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "zeitwerk"
3
4
  require "active_support/core_ext/string/inflections"
4
5
  require "active_support/core_ext/array/conversions"
6
+ require "active_support/descendants_tracker"
7
+ require "active_support/dependencies"
5
8
 
6
9
  module Rails
7
10
  class Application
@@ -12,88 +15,34 @@ module Rails
12
15
  config.generators.templates.unshift(*paths["lib/templates"].existent)
13
16
  end
14
17
 
15
- initializer :ensure_autoload_once_paths_as_subset do
16
- extra = ActiveSupport::Dependencies.autoload_once_paths -
17
- ActiveSupport::Dependencies.autoload_paths
18
+ initializer :setup_main_autoloader do
19
+ autoloader = Rails.autoloaders.main
18
20
 
19
- unless extra.empty?
20
- abort <<-end_error
21
- autoload_once_paths must be a subset of the autoload_paths.
22
- Extra items in autoload_once_paths: #{extra * ','}
23
- end_error
24
- end
25
- end
21
+ ActiveSupport::Dependencies.autoload_paths.freeze
22
+ ActiveSupport::Dependencies.autoload_paths.uniq.each do |path|
23
+ # Zeitwerk only accepts existing directories in `push_dir`.
24
+ next unless File.directory?(path)
26
25
 
27
- # This will become an error if/when we remove classic mode. The plan is
28
- # autoloaders won't be configured up to this point in the finisher, so
29
- # constants just won't be found, raising regular NameError exceptions.
30
- initializer :warn_if_autoloaded, before: :let_zeitwerk_take_over do
31
- next if config.cache_classes
32
- next if ActiveSupport::Dependencies.autoloaded_constants.empty?
33
-
34
- autoloaded = ActiveSupport::Dependencies.autoloaded_constants
35
- constants = "constant".pluralize(autoloaded.size)
36
- enum = autoloaded.to_sentence
37
- have = autoloaded.size == 1 ? "has" : "have"
38
- these = autoloaded.size == 1 ? "This" : "These"
39
- example = autoloaded.first
40
- example_klass = example.constantize.class
41
-
42
- if config.autoloader == :zeitwerk
43
- ActiveSupport::DescendantsTracker.clear
44
- ActiveSupport::Dependencies.clear
45
-
46
- unload_message = "#{these} autoloaded #{constants} #{have} been unloaded."
47
- else
48
- unload_message = "`config.autoloader` is set to `#{config.autoloader}`. #{these} autoloaded #{constants} would have been unloaded if `config.autoloader` had been set to `:zeitwerk`."
26
+ autoloader.push_dir(path)
27
+ autoloader.do_not_eager_load(path) unless ActiveSupport::Dependencies.eager_load?(path)
49
28
  end
50
29
 
51
- ActiveSupport::Deprecation.warn(<<~WARNING)
52
- Initialization autoloaded the #{constants} #{enum}.
53
-
54
- Being able to do this is deprecated. Autoloading during initialization is going
55
- to be an error condition in future versions of Rails.
56
-
57
- Reloading does not reboot the application, and therefore code executed during
58
- initialization does not run again. So, if you reload #{example}, for example,
59
- the expected changes won't be reflected in that stale #{example_klass} object.
60
-
61
- #{unload_message}
62
-
63
- In order to autoload safely at boot time, please wrap your code in a reloader
64
- callback this way:
30
+ unless config.cache_classes
31
+ autoloader.enable_reloading
32
+ ActiveSupport::Dependencies.autoloader = autoloader
65
33
 
66
- Rails.application.reloader.to_prepare do
67
- # Autoload classes and modules needed at boot time here.
68
- end
69
-
70
- That block runs when the application boots, and every time there is a reload.
71
- For historical reasons, it may run twice, so it has to be idempotent.
72
-
73
- Check the "Autoloading and Reloading Constants" guide to learn more about how
74
- Rails autoloads and reloads.
75
- WARNING
76
- end
77
-
78
- initializer :let_zeitwerk_take_over do
79
- if config.autoloader == :zeitwerk
80
- require "active_support/dependencies/zeitwerk_integration"
81
- ActiveSupport::Dependencies::ZeitwerkIntegration.take_over(enable_reloading: !config.cache_classes)
82
- end
83
- end
84
-
85
- initializer :add_builtin_route do |app|
86
- if Rails.env.development?
87
- app.routes.prepend do
88
- get "/rails/info/properties" => "rails/info#properties", internal: true
89
- get "/rails/info/routes" => "rails/info#routes", internal: true
90
- get "/rails/info" => "rails/info#index", internal: true
34
+ autoloader.on_load do |_cpath, value, _abspath|
35
+ if value.is_a?(Class) && value.singleton_class < ActiveSupport::DescendantsTracker
36
+ ActiveSupport::Dependencies._autoloaded_tracked_classes << value
37
+ end
91
38
  end
92
39
 
93
- app.routes.append do
94
- get "/" => "rails/welcome#index", internal: true
40
+ autoloader.on_unload do |_cpath, value, _abspath|
41
+ value.before_remove_const if value.respond_to?(:before_remove_const)
95
42
  end
96
43
  end
44
+
45
+ autoloader.setup
97
46
  end
98
47
 
99
48
  # Setup default session store if not already set in config/application.rb
@@ -127,10 +76,7 @@ module Rails
127
76
  initializer :eager_load! do
128
77
  if config.eager_load
129
78
  ActiveSupport.run_load_hooks(:before_eager_load, self)
130
- # Checks defined?(Zeitwerk) instead of zeitwerk_enabled? because we
131
- # want to eager load any dependency managed by Zeitwerk regardless of
132
- # the autoloading mode of the application.
133
- Zeitwerk::Loader.eager_load_all if defined?(Zeitwerk)
79
+ Zeitwerk::Loader.eager_load_all
134
80
  config.eager_load_namespaces.each(&:eager_load!)
135
81
  end
136
82
  end
@@ -187,6 +133,22 @@ module Rails
187
133
  end
188
134
  end
189
135
 
136
+ initializer :add_internal_routes do |app|
137
+ if Rails.env.development?
138
+ app.routes.prepend do
139
+ get "/rails/info/properties" => "rails/info#properties", internal: true
140
+ get "/rails/info/routes" => "rails/info#routes", internal: true
141
+ get "/rails/info" => "rails/info#index", internal: true
142
+ end
143
+
144
+ routes_reloader.run_after_load_paths = -> do
145
+ app.routes.append do
146
+ get "/" => "rails/welcome#index", internal: true
147
+ end
148
+ end
149
+ end
150
+ end
151
+
190
152
  # Set routes reload after the finisher hook to ensure routes added in
191
153
  # the hook are taken into account.
192
154
  initializer :set_routes_reloader_hook do |app|
@@ -213,7 +175,10 @@ module Rails
213
175
  # added in the hook are taken into account.
214
176
  initializer :set_clear_dependencies_hook, group: :all do |app|
215
177
  callback = lambda do
216
- ActiveSupport::DescendantsTracker.clear
178
+ # Order matters.
179
+ ActiveSupport::DescendantsTracker.clear(
180
+ only: ActiveSupport::Dependencies._autoloaded_tracked_classes
181
+ )
217
182
  ActiveSupport::Dependencies.clear
218
183
  end
219
184
 
@@ -251,13 +216,6 @@ module Rails
251
216
  end
252
217
  end
253
218
  end
254
-
255
- # Disable dependency loading during request cycle
256
- initializer :disable_dependency_loading do
257
- if config.eager_load && config.cache_classes && !config.enable_dependency_loading
258
- ActiveSupport::Dependencies.unhook!
259
- end
260
- end
261
219
  end
262
220
  end
263
221
  end