next_rails 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/main.yml +1 -1
- data/CHANGELOG.md +8 -1
- data/lib/next_rails/bundle_report.rb +1 -1
- data/lib/next_rails/gem_info.rb +2 -0
- data/lib/next_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57c4fac0e45a33071dcb6df1938840ba6854ab1ccc4dd7782e365568e91f17c5
|
4
|
+
data.tar.gz: 10e5be9d8d4bbfa9dfc7b2dd04905d1c47a76f600be53a8a7f61d25ca3628589
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3377c0643a78dda0406d386adfbc4c749f507a2d000d13f84b6ee13cd9e3bab79cbebea75efb56e6e94c936a2794e77eda0aca4e684dd025ec1fa4c91c4a2c33
|
7
|
+
data.tar.gz: 355383fd6dc9ec1f726ec2c2bf43b4bf9b0b289dd2ee2d7e321e87deff18d86f8f9eb6469e694d40797a676a1e3935ce1712b208e153f6857b447be26807138e
|
data/.github/workflows/main.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
|
-
# main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.2.
|
1
|
+
# main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.2.3...main)
|
2
2
|
* Your changes/patches go here.
|
3
|
+
|
4
|
+
# v1.2.3 / 2023-04-12 [(commits)](https://github.com/fastruby/next_rails/compare/v1.2.2...v1.2.3)
|
5
|
+
|
6
|
+
- [Fix ERB deprecation warning in Ruby 3.1]
|
7
|
+
|
8
|
+
- [Remove Rails gems from compatibility check]
|
9
|
+
|
3
10
|
# v1.2.2 / 2023-03-03 [(commits)](https://github.com/fastruby/next_rails/compare/v1.2.1...v1.2.2)
|
4
11
|
* [BUGFIX: Fixed `KernelWarnTracker#warn signature to match `Kernel#warn` for ruby 2.5+](https://github.com/fastruby/next_rails/pull/82)
|
5
12
|
* [CHORE: Added updated templates for bug fixes, feature requests and pull requests](https://github.com/fastruby/next_rails/pull/64) as per [this RFC](https://github.com/fastruby/RFCs/blob/main/2021-10-13-github-templates.md)
|
@@ -49,7 +49,7 @@ module NextRails
|
|
49
49
|
<%= incompatible_gems.length.to_s.red %> gems incompatible with Rails <%= rails_version %>
|
50
50
|
ERB
|
51
51
|
|
52
|
-
puts ERB.new(template,
|
52
|
+
puts ERB.new(template, trim_mode: "-").result(binding)
|
53
53
|
end
|
54
54
|
|
55
55
|
def gem_header(_gem)
|
data/lib/next_rails/gem_info.rb
CHANGED
data/lib/next_rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: next_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ernesto Tagwerker
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2023-
|
12
|
+
date: 2023-04-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: colorize
|