railties 6.1.1 → 6.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.rdoc +1 -1
- data/lib/rails/api/task.rb +1 -1
- data/lib/rails/commands/notes/notes_command.rb +2 -2
- data/lib/rails/gem_version.rb +1 -1
- data/lib/rails/generators/app_base.rb +4 -4
- data/lib/rails/generators/rails/app/templates/bin/yarn.tt +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f95a5e8436f261b26ce4c66e79858252dd5537abbadd42b11c37041875479a50
|
4
|
+
data.tar.gz: 9cea22465cff4bacad402bb460e45f526ec3d90b3b5266677a118554d14f767d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c2dd30ae919200539977d3732587a07cc6746201cb649fce19b94e90e46295b97c10176548d9a31807ab96a049cb304d2fa2ba9949b8a4f4c0e39ba981c10a2
|
7
|
+
data.tar.gz: 1dbdd0412d69d4a58b0f76ebfd5dc4accb6f2c8a695dacb2f8d66b2bc92e032a247f8c622afbd4e39edbfd7406a06ff12dc1e91708d880a43e1f4a946e288196
|
data/CHANGELOG.md
CHANGED
data/README.rdoc
CHANGED
@@ -17,7 +17,7 @@ The latest version of Railties can be installed with RubyGems:
|
|
17
17
|
|
18
18
|
Source code can be downloaded as part of the Rails project on GitHub
|
19
19
|
|
20
|
-
* https://github.com/rails/rails/tree/
|
20
|
+
* https://github.com/rails/rails/tree/main/railties
|
21
21
|
|
22
22
|
== License
|
23
23
|
|
data/lib/rails/api/task.rb
CHANGED
@@ -5,7 +5,7 @@ require "rails/source_annotation_extractor"
|
|
5
5
|
module Rails
|
6
6
|
module Command
|
7
7
|
class NotesCommand < Base # :nodoc:
|
8
|
-
class_option :annotations, aliases: "-a", desc: "Filter by specific annotations, e.g. Foobar TODO", type: :array
|
8
|
+
class_option :annotations, aliases: "-a", desc: "Filter by specific annotations, e.g. Foobar TODO", type: :array
|
9
9
|
|
10
10
|
def perform(*)
|
11
11
|
require_application_and_environment!
|
@@ -15,7 +15,7 @@ module Rails
|
|
15
15
|
|
16
16
|
private
|
17
17
|
def display_annotations
|
18
|
-
annotations = options[:annotations]
|
18
|
+
annotations = options[:annotations] || Rails::SourceAnnotationExtractor::Annotation.tags
|
19
19
|
tag = (annotations.length > 1)
|
20
20
|
|
21
21
|
Rails::SourceAnnotationExtractor.enumerate annotations.join("|"), tag: tag, dirs: directories
|
data/lib/rails/gem_version.rb
CHANGED
@@ -98,7 +98,7 @@ module Rails
|
|
98
98
|
desc: "Set up the #{name} with Gemfile pointing to Rails repository"
|
99
99
|
|
100
100
|
class_option :master, type: :boolean, default: false,
|
101
|
-
desc: "Set up the #{name} with Gemfile pointing to Rails repository
|
101
|
+
desc: "Set up the #{name} with Gemfile pointing to Rails repository main branch"
|
102
102
|
|
103
103
|
class_option :rc, type: :string, default: nil,
|
104
104
|
desc: "Path to file containing extra configuration options for rails command"
|
@@ -301,16 +301,16 @@ module Rails
|
|
301
301
|
]
|
302
302
|
elsif options.edge?
|
303
303
|
[
|
304
|
-
GemfileEntry.github("rails", "rails/rails")
|
304
|
+
GemfileEntry.github("rails", "rails/rails", "main")
|
305
305
|
]
|
306
306
|
elsif options.master?
|
307
307
|
[
|
308
|
-
GemfileEntry.github("rails", "rails/rails", "
|
308
|
+
GemfileEntry.github("rails", "rails/rails", "main")
|
309
309
|
]
|
310
310
|
else
|
311
311
|
[GemfileEntry.version("rails",
|
312
312
|
rails_version_specifier,
|
313
|
-
"Bundle edge Rails instead: gem 'rails', github: 'rails/rails'")]
|
313
|
+
"Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'")]
|
314
314
|
end
|
315
315
|
end
|
316
316
|
|
@@ -2,7 +2,7 @@ APP_ROOT = File.expand_path('..', __dir__)
|
|
2
2
|
Dir.chdir(APP_ROOT) do
|
3
3
|
yarn = ENV["PATH"].split(File::PATH_SEPARATOR).
|
4
4
|
select { |dir| File.expand_path(dir) != __dir__ }.
|
5
|
-
product(["yarn", "yarn.
|
5
|
+
product(["yarn", "yarn.cmd", "yarn.ps1"]).
|
6
6
|
map { |dir, file| File.expand_path(file, dir) }.
|
7
7
|
find { |file| File.executable?(file) }
|
8
8
|
|
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.1.
|
4
|
+
version: 6.1.2
|
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: 2021-
|
11
|
+
date: 2021-02-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.1.
|
19
|
+
version: 6.1.2
|
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.1.
|
26
|
+
version: 6.1.2
|
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.1.
|
33
|
+
version: 6.1.2
|
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.1.
|
40
|
+
version: 6.1.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - '='
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 6.1.
|
89
|
+
version: 6.1.2
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - '='
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 6.1.
|
96
|
+
version: 6.1.2
|
97
97
|
description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
98
98
|
email: david@loudthinking.com
|
99
99
|
executables:
|
@@ -426,10 +426,10 @@ licenses:
|
|
426
426
|
- MIT
|
427
427
|
metadata:
|
428
428
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
429
|
-
changelog_uri: https://github.com/rails/rails/blob/v6.1.
|
430
|
-
documentation_uri: https://api.rubyonrails.org/v6.1.
|
429
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.1.2/railties/CHANGELOG.md
|
430
|
+
documentation_uri: https://api.rubyonrails.org/v6.1.2/
|
431
431
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
432
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.1.
|
432
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.1.2/railties
|
433
433
|
post_install_message:
|
434
434
|
rdoc_options:
|
435
435
|
- "--exclude"
|