railties 6.0.2.2 → 6.0.3.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +43 -0
- data/README.rdoc +1 -1
- data/lib/rails/application.rb +9 -3
- data/lib/rails/application/bootstrap.rb +2 -2
- data/lib/rails/application/configuration.rb +1 -1
- data/lib/rails/application/default_middleware_stack.rb +1 -2
- data/lib/rails/application/routes_reloader.rb +0 -1
- data/lib/rails/application_controller.rb +0 -1
- data/lib/rails/code_statistics.rb +2 -0
- data/lib/rails/command/behavior.rb +1 -1
- data/lib/rails/command/spellchecker.rb +0 -1
- data/lib/rails/configuration.rb +13 -8
- data/lib/rails/engine.rb +2 -3
- data/lib/rails/gem_version.rb +2 -2
- data/lib/rails/generators.rb +0 -1
- data/lib/rails/generators/actions.rb +0 -1
- data/lib/rails/generators/actions/create_migration.rb +0 -1
- data/lib/rails/generators/app_base.rb +0 -1
- data/lib/rails/generators/base.rb +3 -3
- data/lib/rails/generators/erb.rb +0 -1
- data/lib/rails/generators/erb/mailer/mailer_generator.rb +0 -1
- data/lib/rails/generators/erb/scaffold/scaffold_generator.rb +0 -1
- data/lib/rails/generators/generated_attribute.rb +0 -1
- data/lib/rails/generators/rails/app/app_generator.rb +2 -4
- data/lib/rails/generators/rails/app/templates/Gemfile.tt +1 -1
- data/lib/rails/generators/rails/app/templates/config/environments/test.rb.tt +2 -1
- data/lib/rails/generators/rails/app/templates/gitignore.tt +5 -0
- data/lib/rails/generators/rails/controller/controller_generator.rb +0 -1
- data/lib/rails/generators/rails/encrypted_file/encrypted_file_generator.rb +6 -2
- data/lib/rails/generators/rails/generator/generator_generator.rb +0 -1
- data/lib/rails/generators/rails/plugin/plugin_generator.rb +0 -1
- data/lib/rails/generators/rails/scaffold_controller/scaffold_controller_generator.rb +0 -1
- data/lib/rails/generators/test_unit/generator/generator_generator.rb +0 -1
- data/lib/rails/generators/test_unit/integration/integration_generator.rb +0 -1
- data/lib/rails/generators/test_unit/scaffold/scaffold_generator.rb +0 -1
- data/lib/rails/generators/testing/behaviour.rb +0 -1
- data/lib/rails/info_controller.rb +0 -1
- data/lib/rails/paths.rb +0 -2
- data/lib/rails/rack/logger.rb +0 -1
- data/lib/rails/railtie.rb +0 -2
- data/lib/rails/railtie/configurable.rb +0 -1
- data/lib/rails/railtie/configuration.rb +0 -1
- data/lib/rails/tasks/framework.rake +1 -1
- data/lib/rails/tasks/zeitwerk.rake +6 -3
- metadata +15 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b83a45a2b9d60385194ad941d651acfbb3bdaa441d31bb21b59ae2f1f4adb6ff
|
4
|
+
data.tar.gz: 6bd164b7e3e9dc1c6defd7560948966d9087a7e40b7ddd33d093e89cd6a92b6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18a1a48f261c300e60b00a0b2acc1b674a836a29a376ef22e14166749650ba6f01e7828c3c0f666ad6dcc0622c31052477b45b66ce4e7c7292025187f030ee94
|
7
|
+
data.tar.gz: f11e798f061a0cde07105d3be04c4f0efd851c9603d0ccf1dbc1711f9b45f6f1f54f8772fff1ce3f1875ccb92ee39d2725c602ae0b8c95cd9c4eb1d102fcc846
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,46 @@
|
|
1
|
+
## Rails 6.0.3.rc1 (April 30, 2020) ##
|
2
|
+
|
3
|
+
* Cache compiled view templates when running tests by default
|
4
|
+
|
5
|
+
When generating a new app without `--skip-spring`, caching classes is
|
6
|
+
disabled in `environments/test.rb`. This implicitly disables caching
|
7
|
+
view templates too. This change will enable view template caching by
|
8
|
+
adding this to the generated `environments/test.rb`:
|
9
|
+
|
10
|
+
````ruby
|
11
|
+
config.action_view.cache_template_loading = true
|
12
|
+
````
|
13
|
+
|
14
|
+
*Jorge Manrubia*
|
15
|
+
|
16
|
+
* `Rails::Application#eager_load!` is available again to load application code
|
17
|
+
manually as it was possible in previous versions.
|
18
|
+
|
19
|
+
Please, note this is not integrated with the whole eager loading logic that
|
20
|
+
runs when Rails boots with eager loading enabled, you can think of this
|
21
|
+
method as a vanilla recursive code loader.
|
22
|
+
|
23
|
+
This ability has been restored because there are some use cases for it, such
|
24
|
+
as indexers that need to have all application classes and modules in memory.
|
25
|
+
|
26
|
+
*Xavier Noria*
|
27
|
+
|
28
|
+
* Generators that inherit from NamedBase respect `--force` option
|
29
|
+
|
30
|
+
*Josh Brody*
|
31
|
+
|
32
|
+
* Regression fix: The Rake task `zeitwerk:check` supports eager loaded
|
33
|
+
namespaces which do not have eager load paths, like the recently added
|
34
|
+
`i18n`. These namespaces are only required to respond to `eager_load!`.
|
35
|
+
|
36
|
+
*Xavier Noria*
|
37
|
+
|
38
|
+
|
39
|
+
## Rails 6.0.2.2 (March 19, 2020) ##
|
40
|
+
|
41
|
+
* No changes.
|
42
|
+
|
43
|
+
|
1
44
|
## Rails 6.0.2.1 (December 18, 2019) ##
|
2
45
|
|
3
46
|
* No changes.
|
data/README.rdoc
CHANGED
@@ -37,4 +37,4 @@ Bug reports can be filed for the Ruby on Rails project here:
|
|
37
37
|
|
38
38
|
Feature requests should be discussed on the rails-core mailing list here:
|
39
39
|
|
40
|
-
* https://
|
40
|
+
* https://discuss.rubyonrails.org/c/rubyonrails-core
|
data/lib/rails/application.rb
CHANGED
@@ -501,8 +501,16 @@ module Rails
|
|
501
501
|
ordered_railties.flatten - [self]
|
502
502
|
end
|
503
503
|
|
504
|
-
|
504
|
+
# Eager loads the application code.
|
505
|
+
def eager_load!
|
506
|
+
if Rails.autoloaders.zeitwerk_enabled?
|
507
|
+
Rails.autoloaders.each(&:eager_load)
|
508
|
+
else
|
509
|
+
super
|
510
|
+
end
|
511
|
+
end
|
505
512
|
|
513
|
+
protected
|
506
514
|
alias :build_middleware_stack :app
|
507
515
|
|
508
516
|
def run_tasks_blocks(app) #:nodoc:
|
@@ -582,7 +590,6 @@ module Rails
|
|
582
590
|
end
|
583
591
|
|
584
592
|
private
|
585
|
-
|
586
593
|
def generate_development_secret
|
587
594
|
if secrets.secret_key_base.nil?
|
588
595
|
key_file = Rails.root.join("tmp/development_secret.txt")
|
@@ -624,7 +631,6 @@ module Rails
|
|
624
631
|
end
|
625
632
|
|
626
633
|
private
|
627
|
-
|
628
634
|
def convert_key(key)
|
629
635
|
unless key.kind_of?(Symbol)
|
630
636
|
ActiveSupport::Deprecation.warn(<<~MESSAGE.squish)
|
@@ -26,7 +26,7 @@ config.eager_load is set to nil. Please update your config/environments/*.rb fil
|
|
26
26
|
* test - set it to false (unless you use a tool that preloads your test environment)
|
27
27
|
* production - set it to true
|
28
28
|
|
29
|
-
INFO
|
29
|
+
INFO
|
30
30
|
config.eager_load = config.cache_classes
|
31
31
|
end
|
32
32
|
end
|
@@ -56,7 +56,7 @@ INFO
|
|
56
56
|
# Initialize cache early in the stack so railties can make use of it.
|
57
57
|
initializer :initialize_cache, group: :all do
|
58
58
|
unless Rails.cache
|
59
|
-
Rails.cache = ActiveSupport::Cache.lookup_store(config.cache_store)
|
59
|
+
Rails.cache = ActiveSupport::Cache.lookup_store(*config.cache_store)
|
60
60
|
|
61
61
|
if Rails.cache.respond_to?(:middleware)
|
62
62
|
config.middleware.insert_before(::Rack::Runtime, Rails.cache.middleware)
|
@@ -31,7 +31,7 @@ module Rails
|
|
31
31
|
@filter_parameters = []
|
32
32
|
@filter_redirect = []
|
33
33
|
@helpers_paths = []
|
34
|
-
@hosts = Array(([IPAddr.new("0.0.0.0/0"), IPAddr.new("::/0")
|
34
|
+
@hosts = Array(([".localhost", IPAddr.new("0.0.0.0/0"), IPAddr.new("::/0")] if Rails.env.development?))
|
35
35
|
@public_file_server = ActiveSupport::OrderedOptions.new
|
36
36
|
@public_file_server.enabled = true
|
37
37
|
@public_file_server.index_name = "index"
|
@@ -16,7 +16,7 @@ module Rails
|
|
16
16
|
middleware.use ::ActionDispatch::HostAuthorization, config.hosts, config.action_dispatch.hosts_response_app
|
17
17
|
|
18
18
|
if config.force_ssl
|
19
|
-
middleware.use ::ActionDispatch::SSL, config.ssl_options
|
19
|
+
middleware.use ::ActionDispatch::SSL, **config.ssl_options
|
20
20
|
end
|
21
21
|
|
22
22
|
middleware.use ::Rack::Sendfile, config.action_dispatch.x_sendfile_header
|
@@ -79,7 +79,6 @@ module Rails
|
|
79
79
|
end
|
80
80
|
|
81
81
|
private
|
82
|
-
|
83
82
|
def load_rack_cache
|
84
83
|
rack_cache = config.action_dispatch.rack_cache
|
85
84
|
return unless rack_cache
|
@@ -12,7 +12,6 @@ class Rails::ApplicationController < ActionController::Base # :nodoc:
|
|
12
12
|
end
|
13
13
|
|
14
14
|
private
|
15
|
-
|
16
15
|
def require_local!
|
17
16
|
unless local_request?
|
18
17
|
render html: "<p>For security purposes, this information is only available to local requests.</p>".html_safe, status: :forbidden
|
@@ -44,7 +44,7 @@ module Rails
|
|
44
44
|
require path
|
45
45
|
return
|
46
46
|
rescue LoadError => e
|
47
|
-
raise unless
|
47
|
+
raise unless /#{Regexp.escape(path)}$/.match?(e.message)
|
48
48
|
rescue Exception => e
|
49
49
|
warn "[WARNING] Could not load #{command_type} #{path.inspect}. Error: #{e.message}.\n#{e.backtrace.join("\n")}"
|
50
50
|
end
|
data/lib/rails/configuration.rb
CHANGED
@@ -41,34 +41,39 @@ module Rails
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def insert_before(*args, &block)
|
44
|
-
@operations <<
|
44
|
+
@operations << -> middleware { middleware.send(__method__, *args, &block) }
|
45
45
|
end
|
46
|
+
ruby2_keywords(:insert_before) if respond_to?(:ruby2_keywords, true)
|
46
47
|
|
47
48
|
alias :insert :insert_before
|
48
49
|
|
49
50
|
def insert_after(*args, &block)
|
50
|
-
@operations <<
|
51
|
+
@operations << -> middleware { middleware.send(__method__, *args, &block) }
|
51
52
|
end
|
53
|
+
ruby2_keywords(:insert_after) if respond_to?(:ruby2_keywords, true)
|
52
54
|
|
53
55
|
def swap(*args, &block)
|
54
|
-
@operations <<
|
56
|
+
@operations << -> middleware { middleware.send(__method__, *args, &block) }
|
55
57
|
end
|
58
|
+
ruby2_keywords(:swap) if respond_to?(:ruby2_keywords, true)
|
56
59
|
|
57
60
|
def use(*args, &block)
|
58
|
-
@operations <<
|
61
|
+
@operations << -> middleware { middleware.send(__method__, *args, &block) }
|
59
62
|
end
|
63
|
+
ruby2_keywords(:use) if respond_to?(:ruby2_keywords, true)
|
60
64
|
|
61
65
|
def delete(*args, &block)
|
62
|
-
@delete_operations <<
|
66
|
+
@delete_operations << -> middleware { middleware.send(__method__, *args, &block) }
|
63
67
|
end
|
64
68
|
|
65
69
|
def unshift(*args, &block)
|
66
|
-
@operations <<
|
70
|
+
@operations << -> middleware { middleware.send(__method__, *args, &block) }
|
67
71
|
end
|
72
|
+
ruby2_keywords(:unshift) if respond_to?(:ruby2_keywords, true)
|
68
73
|
|
69
74
|
def merge_into(other) #:nodoc:
|
70
|
-
(@operations + @delete_operations).each do |operation
|
71
|
-
|
75
|
+
(@operations + @delete_operations).each do |operation|
|
76
|
+
operation.call(other)
|
72
77
|
end
|
73
78
|
|
74
79
|
other
|
data/lib/rails/engine.rb
CHANGED
@@ -470,7 +470,8 @@ module Rails
|
|
470
470
|
end
|
471
471
|
|
472
472
|
def eager_load!
|
473
|
-
# Already done by Zeitwerk::Loader.eager_load_all
|
473
|
+
# Already done by Zeitwerk::Loader.eager_load_all. We need this guard to
|
474
|
+
# easily provide a compatible API for both zeitwerk and classic modes.
|
474
475
|
return if Rails.autoloaders.zeitwerk_enabled?
|
475
476
|
|
476
477
|
config.eager_load_paths.each do |load_path|
|
@@ -654,14 +655,12 @@ module Rails
|
|
654
655
|
end
|
655
656
|
|
656
657
|
protected
|
657
|
-
|
658
658
|
def run_tasks_blocks(*) #:nodoc:
|
659
659
|
super
|
660
660
|
paths["lib/tasks"].existent.sort.each { |ext| load(ext) }
|
661
661
|
end
|
662
662
|
|
663
663
|
private
|
664
|
-
|
665
664
|
def load_config_initializer(initializer) # :doc:
|
666
665
|
ActiveSupport::Notifications.instrument("load_config_initializer.railties", initializer: initializer) do
|
667
666
|
load(initializer)
|
data/lib/rails/gem_version.rb
CHANGED
data/lib/rails/generators.rb
CHANGED
@@ -268,7 +268,6 @@ module Rails
|
|
268
268
|
end
|
269
269
|
|
270
270
|
private
|
271
|
-
|
272
271
|
# Define log for backwards compatibility. If just one argument is sent,
|
273
272
|
# invoke say, otherwise invoke say_status. Differently from say and
|
274
273
|
# similarly to say_status, this method respects the quiet? option given.
|
@@ -249,11 +249,11 @@ module Rails
|
|
249
249
|
end
|
250
250
|
|
251
251
|
private
|
252
|
-
|
253
252
|
# Check whether the given class names are already taken by user
|
254
253
|
# application or Ruby on Rails.
|
255
254
|
def class_collisions(*class_names)
|
256
255
|
return unless behavior == :invoke
|
256
|
+
return if options.force?
|
257
257
|
|
258
258
|
class_names.flatten.each do |class_name|
|
259
259
|
class_name = class_name.to_s
|
@@ -266,8 +266,8 @@ module Rails
|
|
266
266
|
|
267
267
|
if last && last.const_defined?(last_name.camelize, false)
|
268
268
|
raise Error, "The name '#{class_name}' is either already used in your application " \
|
269
|
-
"or reserved by Ruby on Rails. Please choose an alternative
|
270
|
-
"this generator again."
|
269
|
+
"or reserved by Ruby on Rails. Please choose an alternative or use " \
|
270
|
+
"--force to skip this check and run this generator again."
|
271
271
|
end
|
272
272
|
end
|
273
273
|
end
|
data/lib/rails/generators/erb.rb
CHANGED
@@ -39,7 +39,6 @@ module Rails
|
|
39
39
|
end
|
40
40
|
|
41
41
|
private
|
42
|
-
|
43
42
|
# parse possible attribute options like :limit for string/text/binary/integer, :precision/:scale for decimals or :polymorphic for references/belongs_to
|
44
43
|
# when declaring options curly brackets should be used
|
45
44
|
def parse_type_and_options(type)
|
@@ -68,7 +68,7 @@ module Rails
|
|
68
68
|
|
69
69
|
def version_control
|
70
70
|
if !options[:skip_git] && !options[:pretend]
|
71
|
-
run "git init", capture: options[:quiet]
|
71
|
+
run "git init", capture: options[:quiet], abort_on_failure: false
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
@@ -79,7 +79,7 @@ module Rails
|
|
79
79
|
def app
|
80
80
|
directory "app"
|
81
81
|
|
82
|
-
|
82
|
+
empty_directory_with_keep_file "app/assets/images"
|
83
83
|
|
84
84
|
keep_file "app/controllers/concerns"
|
85
85
|
keep_file "app/models/concerns"
|
@@ -494,7 +494,6 @@ module Rails
|
|
494
494
|
end
|
495
495
|
|
496
496
|
private
|
497
|
-
|
498
497
|
# Define file as an alias to create_file for backwards compatibility.
|
499
498
|
def file(*args, &block)
|
500
499
|
create_file(*args, &block)
|
@@ -539,7 +538,6 @@ module Rails
|
|
539
538
|
end
|
540
539
|
|
541
540
|
private
|
542
|
-
|
543
541
|
def handle_version_request!(argument)
|
544
542
|
if ["--version", "-v"].include?(argument)
|
545
543
|
require "rails/version"
|
@@ -53,7 +53,7 @@ group :development do
|
|
53
53
|
<%- end -%>
|
54
54
|
<%- end -%>
|
55
55
|
<% if depend_on_listen? -%>
|
56
|
-
gem 'listen', '
|
56
|
+
gem 'listen', '~> 3.2'
|
57
57
|
<% end -%>
|
58
58
|
<% if spring_install? -%>
|
59
59
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
@@ -6,9 +6,10 @@
|
|
6
6
|
Rails.application.configure do
|
7
7
|
# Settings specified here will take precedence over those in config/application.rb.
|
8
8
|
|
9
|
-
<%-# Spring executes the reloaders when files change.
|
9
|
+
<%-# Spring executes the reloaders when files change. -%>
|
10
10
|
<%- if spring_install? -%>
|
11
11
|
config.cache_classes = false
|
12
|
+
config.action_view.cache_template_loading = true
|
12
13
|
<%- else -%>
|
13
14
|
config.cache_classes = true
|
14
15
|
<%- end -%>
|
@@ -8,8 +8,12 @@ module Rails
|
|
8
8
|
class EncryptedFileGenerator < Base # :nodoc:
|
9
9
|
def add_encrypted_file_silently(file_path, key_path, template = encrypted_file_template)
|
10
10
|
unless File.exist?(file_path)
|
11
|
-
|
12
|
-
|
11
|
+
ActiveSupport::EncryptedFile.new(
|
12
|
+
content_path: file_path,
|
13
|
+
key_path: key_path,
|
14
|
+
env_key: "RAILS_MASTER_KEY",
|
15
|
+
raise_if_missing_key: true
|
16
|
+
).write(template)
|
13
17
|
end
|
14
18
|
end
|
15
19
|
|
data/lib/rails/paths.rb
CHANGED
@@ -98,7 +98,6 @@ module Rails
|
|
98
98
|
end
|
99
99
|
|
100
100
|
private
|
101
|
-
|
102
101
|
def filter_by(&block)
|
103
102
|
all_paths.find_all(&block).flat_map { |path|
|
104
103
|
paths = path.existent
|
@@ -223,7 +222,6 @@ module Rails
|
|
223
222
|
alias to_a expanded
|
224
223
|
|
225
224
|
private
|
226
|
-
|
227
225
|
def files_in(path)
|
228
226
|
Dir.chdir(path) do
|
229
227
|
files = Dir.glob(@glob)
|
data/lib/rails/rack/logger.rb
CHANGED
data/lib/rails/railtie.rb
CHANGED
@@ -228,7 +228,6 @@ module Rails
|
|
228
228
|
end
|
229
229
|
|
230
230
|
protected
|
231
|
-
|
232
231
|
def run_console_blocks(app) #:nodoc:
|
233
232
|
each_registered_block(:console) { |block| block.call(app) }
|
234
233
|
end
|
@@ -247,7 +246,6 @@ module Rails
|
|
247
246
|
end
|
248
247
|
|
249
248
|
private
|
250
|
-
|
251
249
|
# run `&block` in every registered block in `#register_block_for`
|
252
250
|
def each_registered_block(type, &block)
|
253
251
|
klass = self.class
|
@@ -8,7 +8,7 @@ namespace :app do
|
|
8
8
|
task template: :environment do
|
9
9
|
template = ENV["LOCATION"]
|
10
10
|
raise "No LOCATION value given. Please set LOCATION either as path to a file or a URL" if template.blank?
|
11
|
-
template = File.expand_path(template) if
|
11
|
+
template = File.expand_path(template) if !%r{\A[A-Za-z][A-Za-z0-9+\-\.]*://}.match?(template)
|
12
12
|
require "rails/generators"
|
13
13
|
require "rails/generators/rails/app/app_generator"
|
14
14
|
generator = Rails::Generators::AppGenerator.new [Rails.root], {}, { destination_root: Rails.root }
|
@@ -14,8 +14,8 @@ end
|
|
14
14
|
report_not_checked = ->(not_checked) do
|
15
15
|
puts
|
16
16
|
puts <<~EOS
|
17
|
-
WARNING: The
|
18
|
-
|
17
|
+
WARNING: The following directories will only be checked if you configure
|
18
|
+
them to be eager loaded:
|
19
19
|
EOS
|
20
20
|
puts
|
21
21
|
|
@@ -53,8 +53,11 @@ namespace :zeitwerk do
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
|
+
require "active_support/core_ext/object/try"
|
56
57
|
eager_load_paths = Rails.configuration.eager_load_namespaces.map do |eln|
|
57
|
-
|
58
|
+
# Quick regression fix for 6.0.3 to support namespaces that do not have
|
59
|
+
# eager load paths, like the recently added i18n. I'll rewrite this task.
|
60
|
+
eln.try(:config).try(:eager_load_paths)
|
58
61
|
end.compact.flatten
|
59
62
|
|
60
63
|
not_checked = ActiveSupport::Dependencies.autoload_paths - eager_load_paths
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: railties
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.3.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 6.0.
|
19
|
+
version: 6.0.3.rc1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 6.0.
|
26
|
+
version: 6.0.3.rc1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: actionpack
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 6.0.
|
33
|
+
version: 6.0.3.rc1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 6.0.
|
40
|
+
version: 6.0.3.rc1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -92,14 +92,14 @@ dependencies:
|
|
92
92
|
requirements:
|
93
93
|
- - '='
|
94
94
|
- !ruby/object:Gem::Version
|
95
|
-
version: 6.0.
|
95
|
+
version: 6.0.3.rc1
|
96
96
|
type: :development
|
97
97
|
prerelease: false
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
99
99
|
requirements:
|
100
100
|
- - '='
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: 6.0.
|
102
|
+
version: 6.0.3.rc1
|
103
103
|
description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
104
104
|
email: david@loudthinking.com
|
105
105
|
executables:
|
@@ -432,10 +432,10 @@ licenses:
|
|
432
432
|
- MIT
|
433
433
|
metadata:
|
434
434
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
435
|
-
changelog_uri: https://github.com/rails/rails/blob/v6.0.
|
436
|
-
documentation_uri: https://api.rubyonrails.org/v6.0.
|
437
|
-
mailing_list_uri: https://
|
438
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.0.
|
435
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.0.3.rc1/railties/CHANGELOG.md
|
436
|
+
documentation_uri: https://api.rubyonrails.org/v6.0.3.rc1/
|
437
|
+
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
438
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.0.3.rc1/railties
|
439
439
|
post_install_message:
|
440
440
|
rdoc_options:
|
441
441
|
- "--exclude"
|
@@ -449,11 +449,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
449
449
|
version: 2.5.0
|
450
450
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
451
451
|
requirements:
|
452
|
-
- - "
|
452
|
+
- - ">"
|
453
453
|
- !ruby/object:Gem::Version
|
454
|
-
version:
|
454
|
+
version: 1.3.1
|
455
455
|
requirements: []
|
456
|
-
rubygems_version: 3.
|
456
|
+
rubygems_version: 3.1.2
|
457
457
|
signing_key:
|
458
458
|
specification_version: 4
|
459
459
|
summary: Tools for creating, working with, and running Rails applications.
|