nextgen 0.35.0 → 0.36.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6c1a74232607c0a78128136efb9a5ac7d481f06b4dce24a65685bfa333eaadb
4
- data.tar.gz: 31313f9d1eee80507668420a2d5fa134f373733ca02f3ebbe7e188451bb3e29c
3
+ metadata.gz: ac970ad7ca291be8da14df6ae0a95deff1c68b0ce3ea5920938f93ed0f38acf4
4
+ data.tar.gz: 14c846fafe3ab9106345dc624a8f408f5b35caeca3b81be5eaed511d8af028af
5
5
  SHA512:
6
- metadata.gz: '08c724cf0f5b88fe9f4cc3ecce9552da653a6f6bca0efea2342d60f5b8fa6342a3c09686121c46aedb8cd57a7071a3bc23007b1ffb4cdd684152eca612353b74'
7
- data.tar.gz: ae8c8b78d695ddd85439da1b049603cc81dd8505a662a854556763c084588b71a4159b05a0832fe9a997322ac364b4ccd35361e20c6c6a8b20f68cd77e7deb9f
6
+ metadata.gz: 4d4189d0e0130f9dd339d919215ab54fca564fd2f20f8890748c316fa4c915a2dab226878c6f852ca65160e8665fab83610ebf204ea3c7764f755d912e7e05d3
7
+ data.tar.gz: 9e70e9ce30916b3504cd88dcde78332d88b0fc164245ea1029ffbd57daff09c6c38b985339472e40503e3af0830c6351f2e15e7822da236104abcdb88aff89ed
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Gem Version](https://img.shields.io/gem/v/nextgen)](https://rubygems.org/gems/nextgen)
4
4
  [![Gem Downloads](https://img.shields.io/gem/dt/nextgen)](https://www.ruby-toolbox.com/projects/nextgen)
5
5
  [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/mattbrictson/nextgen/ci.yml)](https://github.com/mattbrictson/nextgen/actions/workflows/ci.yml)
6
- [![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/mattbrictson/nextgen)](https://codeclimate.com/github/mattbrictson/nextgen)
7
6
 
8
7
  Nextgen is an **interactive** and flexible alternative to `rails new` that includes opt-in support for modern frontend development with ⚡️**Vite.**
9
8
 
@@ -11,7 +11,7 @@ if File.exist?(".github/workflows/ci.yml")
11
11
 
12
12
  steps:
13
13
  - name: Checkout code
14
- uses: actions/checkout@v4
14
+ uses: actions/checkout@v5
15
15
 
16
16
  - name: Set up Ruby
17
17
  uses: ruby/setup-ruby@v1
@@ -16,7 +16,7 @@ if File.exist?(".github/workflows/ci.yml")
16
16
  runs-on: ubuntu-latest
17
17
  steps:
18
18
  - name: Checkout code
19
- uses: actions/checkout@v4
19
+ uses: actions/checkout@v5
20
20
 
21
21
  - name: Set up Ruby
22
22
  uses: ruby/setup-ruby@v1
@@ -33,10 +33,10 @@ if File.exist?(".github/workflows/ci.yml")
33
33
 
34
34
  steps:
35
35
  - name: Checkout code
36
- uses: actions/checkout@v4
36
+ uses: actions/checkout@v5
37
37
 
38
38
  - name: Set up Node
39
- uses: actions/setup-node@v4
39
+ uses: actions/setup-node@v5
40
40
  with:
41
41
  #{node_spec}
42
42
  cache: #{js_package_manager}
@@ -25,7 +25,7 @@ erb = <<~YAML
25
25
 
26
26
  <%- end -%>
27
27
  - name: Checkout code
28
- uses: actions/checkout@v4
28
+ uses: actions/checkout@v5
29
29
 
30
30
  - name: Set up Ruby
31
31
  uses: ruby/setup-ruby@v1
@@ -30,10 +30,10 @@ if File.exist?(".github/workflows/ci.yml")
30
30
 
31
31
  steps:
32
32
  - name: Checkout code
33
- uses: actions/checkout@v4
33
+ uses: actions/checkout@v5
34
34
 
35
35
  - name: Set up Node
36
- uses: actions/setup-node@v4
36
+ uses: actions/setup-node@v5
37
37
  with:
38
38
  #{node_spec}
39
39
  cache: #{js_package_manager}
@@ -125,7 +125,7 @@ if File.exist?(".github/workflows/ci.yml")
125
125
  inject_into_file ".github/workflows/ci.yml", <<-YAML, before: /^\s+- name: Run tests/
126
126
 
127
127
  - name: Set up Node
128
- uses: actions/setup-node@v4
128
+ uses: actions/setup-node@v5
129
129
  with:
130
130
  #{node_spec}
131
131
  cache: #{js_package_manager}
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nextgen
4
- VERSION = "0.35.0"
4
+ VERSION = "0.36.0"
5
5
  end
@@ -149,6 +149,9 @@ Naming/FileName:
149
149
  Naming/MemoizedInstanceVariableName:
150
150
  Enabled: false
151
151
 
152
+ Naming/PredicateMethod:
153
+ Enabled: false
154
+
152
155
  Naming/VariableNumber:
153
156
  Enabled: false
154
157
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nextgen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
225
  - !ruby/object:Gem::Version
226
226
  version: '0'
227
227
  requirements: []
228
- rubygems_version: 3.6.7
228
+ rubygems_version: 3.6.9
229
229
  specification_version: 4
230
230
  summary: Generate your next Rails app interactively!
231
231
  test_files: []