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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ceb25dba1847fdd6aa7b71ea2dacac03a90e16cf855e59d6a92cb6855c9124f6
4
- data.tar.gz: 48c1a8bc8a02a2d717bb0da75c5145881ec96c0da6953309867238299d8f76b6
3
+ metadata.gz: 57c4fac0e45a33071dcb6df1938840ba6854ab1ccc4dd7782e365568e91f17c5
4
+ data.tar.gz: 10e5be9d8d4bbfa9dfc7b2dd04905d1c47a76f600be53a8a7f61d25ca3628589
5
5
  SHA512:
6
- metadata.gz: afe58b7bc957ceed1c2c1ead4fe64059e4657dcbab249ecd35138f90d3e335987ea6759590679009dee64b9eb8178a28ee030ad13a744ae082348e19f82cc0ff
7
- data.tar.gz: 00c6a32d28b7cb6836ee99246d6a92829d6a450753ad379ecf493015d809888790204e85ba55ac9c0c22c6ce30531422bbf646f7b5bea695c4193e47544c9c07
6
+ metadata.gz: 3377c0643a78dda0406d386adfbc4c749f507a2d000d13f84b6ee13cd9e3bab79cbebea75efb56e6e94c936a2794e77eda0aca4e684dd025ec1fa4c91c4a2c33
7
+ data.tar.gz: 355383fd6dc9ec1f726ec2c2bf43b4bf9b0b289dd2ee2d7e321e87deff18d86f8f9eb6469e694d40797a676a1e3935ce1712b208e153f6857b447be26807138e
@@ -13,7 +13,7 @@ jobs:
13
13
  runs-on: ubuntu-latest
14
14
  strategy:
15
15
  matrix:
16
- ruby-version: [3.1, 2.7.5, 2.3, 2.2, 2.1.9, 2.0.0]
16
+ ruby-version: [3.2, 3.1, 3.0, 2.7, 2.6, 2.5, 2.4, 2.3, 2.2, 2.1, 2.0.0]
17
17
 
18
18
  steps:
19
19
  - uses: actions/checkout@v2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
- # main [(unreleased)](https://github.com/fastruby/next_rails/compare/v1.2.2...main)
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, nil, "-").result(binding)
52
+ puts ERB.new(template, trim_mode: "-").result(binding)
53
53
  end
54
54
 
55
55
  def gem_header(_gem)
@@ -39,6 +39,8 @@ module NextRails
39
39
  "activejob",
40
40
  "activestorage",
41
41
  "activesupport",
42
+ "actionmailbox",
43
+ "actiontext",
42
44
  "railties",
43
45
  ].freeze
44
46
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NextRails
4
- VERSION = "1.2.2"
4
+ VERSION = "1.2.3"
5
5
  end
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.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-03-20 00:00:00.000000000 Z
12
+ date: 2023-04-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colorize