railties 6.0.2.rc1 → 6.0.2.rc2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e53c51805ad9598e809632f5a35694017eb3645b5336f995221397f9598cd286
4
- data.tar.gz: 7b93225441e1614af60280d10e506ce4497a6cf7b356b1598c13fe3f7224d335
3
+ metadata.gz: cf37cc2a76f9cfbd932a8804269ee295aa31ef9f6f461c3868bc350425ad8263
4
+ data.tar.gz: 3e46350b318203d9db5c938f475c0fa09a850a87d1f80085b7feb990a19f12f4
5
5
  SHA512:
6
- metadata.gz: 0c191ad259fc9ba7231edbf23c1381a270972b3b337355079200b19a7ba2399c7801a0db92bb8c286130c6c9f3ef0b19840a5a8aef1f7a8cf58f086e0421fd99
7
- data.tar.gz: b00314a37fd0c76357e5c5bf5cc1306bb146f8a7944b65ca1f56a4beda0b30a42a0c42219f3dc12411a585e87fb4bf34d79d3662045b74185de5a8000f3bf943
6
+ metadata.gz: 545592751b707fd054ba604f505f3dd6dce218129fd7d1d1c3de5e9755dd4c76910294bf4801b65468f303b7f792e53ab6df8aa8b4c8dd3208764107a125f3be
7
+ data.tar.gz: c3cb4f31a6e9f8b35217893e2b73e3a15ba5ba5af5da591de817a6b492605da070fa5924306dd23f6f5862d4751e360a3977aa2675dbf72dcaf0e0cf2c30e7b9
@@ -1,16 +1,9 @@
1
- ## Rails 6.0.2.rc1 (November 27, 2019) ##
1
+ ## Rails 6.0.2.rc2 (December 09, 2019) ##
2
2
 
3
3
  * Fix the collision check for the scaffold generator.
4
4
 
5
5
  *Ryan Robeson*
6
6
 
7
- * Configuration files for environments (`config/environments/*.rb`) are
8
- now able to modify `autoload_paths`, `autoload_once_paths`, and
9
- `eager_load_paths`.
10
-
11
- *Allen Hsu* & *Xavier Noria*
12
-
13
-
14
7
  ## Rails 6.0.1 (November 5, 2019) ##
15
8
 
16
9
  * The `zeitwerk:check` Rake task reports files outside the app's root
@@ -80,7 +80,6 @@ and may also be used independently outside \Rails.
80
80
  * {Getting Started with \Rails}[https://guides.rubyonrails.org/getting_started.html].
81
81
  * {Ruby on \Rails Guides}[https://guides.rubyonrails.org].
82
82
  * {The API Documentation}[https://api.rubyonrails.org].
83
- * {Ruby on \Rails Tutorial}[https://www.railstutorial.org/book].
84
83
 
85
84
  == Contributing
86
85
 
@@ -559,12 +559,6 @@ module Rails
559
559
  end
560
560
  end
561
561
 
562
- initializer :load_environment_config, before: :load_environment_hook, group: :all do
563
- paths["config/environments"].existent.each do |environment|
564
- require environment
565
- end
566
- end
567
-
568
562
  initializer :set_load_path, before: :bootstrap_hook do |app|
569
563
  _all_load_paths(app.config.add_autoload_paths_to_load_path).reverse_each do |path|
570
564
  $LOAD_PATH.unshift(path) if File.directory?(path)
@@ -613,6 +607,12 @@ module Rails
613
607
  end
614
608
  end
615
609
 
610
+ initializer :load_environment_config, before: :load_environment_hook, group: :all do
611
+ paths["config/environments"].existent.each do |environment|
612
+ require environment
613
+ end
614
+ end
615
+
616
616
  initializer :prepend_helpers_path do |app|
617
617
  if !isolated? || (app == self)
618
618
  app.config.helpers_paths.unshift(*paths["app/helpers"].existent)
@@ -10,7 +10,7 @@ module Rails
10
10
  MAJOR = 6
11
11
  MINOR = 0
12
12
  TINY = 2
13
- PRE = "rc1"
13
+ PRE = "rc2"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
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.2.rc1
4
+ version: 6.0.2.rc2
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: 2019-11-27 00:00:00.000000000 Z
11
+ date: 2019-12-09 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.2.rc1
19
+ version: 6.0.2.rc2
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.2.rc1
26
+ version: 6.0.2.rc2
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.2.rc1
33
+ version: 6.0.2.rc2
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.2.rc1
40
+ version: 6.0.2.rc2
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.2.rc1
95
+ version: 6.0.2.rc2
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.2.rc1
102
+ version: 6.0.2.rc2
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.2.rc1/railties/CHANGELOG.md
436
- documentation_uri: https://api.rubyonrails.org/v6.0.2.rc1/
435
+ changelog_uri: https://github.com/rails/rails/blob/v6.0.2.rc2/railties/CHANGELOG.md
436
+ documentation_uri: https://api.rubyonrails.org/v6.0.2.rc2/
437
437
  mailing_list_uri: https://groups.google.com/forum/#!forum/rubyonrails-talk
438
- source_code_uri: https://github.com/rails/rails/tree/v6.0.2.rc1/railties
438
+ source_code_uri: https://github.com/rails/rails/tree/v6.0.2.rc2/railties
439
439
  post_install_message:
440
440
  rdoc_options:
441
441
  - "--exclude"