nextgen 0.35.1 → 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 +4 -4
- data/README.md +0 -1
- data/lib/nextgen/generators/bundler_audit.rb +1 -1
- data/lib/nextgen/generators/erb_lint.rb +1 -1
- data/lib/nextgen/generators/eslint.rb +2 -2
- data/lib/nextgen/generators/rspec_github_actions.rb +1 -1
- data/lib/nextgen/generators/stylelint.rb +2 -2
- data/lib/nextgen/generators/vite.rb +1 -1
- data/lib/nextgen/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac970ad7ca291be8da14df6ae0a95deff1c68b0ce3ea5920938f93ed0f38acf4
|
4
|
+
data.tar.gz: 14c846fafe3ab9106345dc624a8f408f5b35caeca3b81be5eaed511d8af028af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d4189d0e0130f9dd339d919215ab54fca564fd2f20f8890748c316fa4c915a2dab226878c6f852ca65160e8665fab83610ebf204ea3c7764f755d912e7e05d3
|
7
|
+
data.tar.gz: 9e70e9ce30916b3504cd88dcde78332d88b0fc164245ea1029ffbd57daff09c6c38b985339472e40503e3af0830c6351f2e15e7822da236104abcdb88aff89ed
|
data/README.md
CHANGED
@@ -3,7 +3,6 @@
|
|
3
3
|
[](https://rubygems.org/gems/nextgen)
|
4
4
|
[](https://www.ruby-toolbox.com/projects/nextgen)
|
5
5
|
[](https://github.com/mattbrictson/nextgen/actions/workflows/ci.yml)
|
6
|
-
[](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
|
|
@@ -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@
|
36
|
+
uses: actions/checkout@v5
|
37
37
|
|
38
38
|
- name: Set up Node
|
39
|
-
uses: actions/setup-node@
|
39
|
+
uses: actions/setup-node@v5
|
40
40
|
with:
|
41
41
|
#{node_spec}
|
42
42
|
cache: #{js_package_manager}
|
@@ -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@
|
33
|
+
uses: actions/checkout@v5
|
34
34
|
|
35
35
|
- name: Set up Node
|
36
|
-
uses: actions/setup-node@
|
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@
|
128
|
+
uses: actions/setup-node@v5
|
129
129
|
with:
|
130
130
|
#{node_spec}
|
131
131
|
cache: #{js_package_manager}
|
data/lib/nextgen/version.rb
CHANGED