nextgen 0.38.0 → 0.39.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/LICENSE.txt +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 +2 -2
- data/lib/nextgen/generators/stylelint.rb +2 -2
- data/lib/nextgen/generators/vite.rb +2 -2
- data/lib/nextgen/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: 64c5e668f34c02d81f81c1aab9b65ee6b033b3610b19bfcf8476581cb91175e6
|
|
4
|
+
data.tar.gz: 7348ace882c3cde9cef50443b83df5b9a2d1871efede8417625005f422b641b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dea29586f91a465e1975054ce1001a734f1e2746f4acff882947921a2b24057520b545f9d1a2a6c9b10b742b8167ce4e760a2f2f6c423fab070043573aec4294
|
|
7
|
+
data.tar.gz: e278d7e8b0658d7e0d0f54ad2c0ab646906d4fe166e7ef93b7a11a626b21459fc2692ede5c1fe8a1c03fb83a1608e562c84f7c8e3df38747b9d770fab7e08d9a
|
data/LICENSE.txt
CHANGED
|
@@ -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@v6
|
|
37
37
|
|
|
38
38
|
- name: Set up Node
|
|
39
|
-
uses: actions/setup-node@
|
|
39
|
+
uses: actions/setup-node@v6
|
|
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@
|
|
28
|
+
uses: actions/checkout@v6
|
|
29
29
|
|
|
30
30
|
- name: Set up Ruby
|
|
31
31
|
uses: ruby/setup-ruby@v1
|
|
@@ -47,7 +47,7 @@ erb = <<~YAML
|
|
|
47
47
|
<%- if gems.include?("capybara") -%>
|
|
48
48
|
|
|
49
49
|
- name: Keep screenshots from failed system tests
|
|
50
|
-
uses: actions/upload-artifact@
|
|
50
|
+
uses: actions/upload-artifact@v6
|
|
51
51
|
if: failure()
|
|
52
52
|
with:
|
|
53
53
|
name: screenshots
|
|
@@ -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@v6
|
|
34
34
|
|
|
35
35
|
- name: Set up Node
|
|
36
|
-
uses: actions/setup-node@
|
|
36
|
+
uses: actions/setup-node@v6
|
|
37
37
|
with:
|
|
38
38
|
#{node_spec}
|
|
39
39
|
cache: #{js_package_manager}
|
|
@@ -96,7 +96,7 @@ copy_file "app/frontend/images/example.svg"
|
|
|
96
96
|
copy_file "test/helpers/inline_svg_helper_test.rb" if File.exist?("test/vite_helper.rb")
|
|
97
97
|
|
|
98
98
|
say_git "Add a `bin/dev` script that uses run-pty"
|
|
99
|
-
add_js_packages "run-pty@^
|
|
99
|
+
add_js_packages "run-pty@^6", dev: true
|
|
100
100
|
copy_file "bin/dev-node", "bin/dev", mode: :preserve, force: true
|
|
101
101
|
copy_file "run-pty.json"
|
|
102
102
|
remove_file "Procfile.dev"
|
|
@@ -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@v6
|
|
129
129
|
with:
|
|
130
130
|
#{node_spec}
|
|
131
131
|
cache: #{js_package_manager}
|
data/lib/nextgen/version.rb
CHANGED
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.
|
|
4
|
+
version: 0.39.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Brictson
|
|
@@ -224,7 +224,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
224
224
|
- !ruby/object:Gem::Version
|
|
225
225
|
version: '0'
|
|
226
226
|
requirements: []
|
|
227
|
-
rubygems_version:
|
|
227
|
+
rubygems_version: 4.0.3
|
|
228
228
|
specification_version: 4
|
|
229
229
|
summary: Generate your next Rails app interactively!
|
|
230
230
|
test_files: []
|