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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 24e7c4ab4df49ee604a2adf4687e705a57171d0fdf57ef967e7247e6f3891a8e
4
- data.tar.gz: 794a80b46d5a9751f0ff55acec3d8107406a97d0f2261dba7e80a30d93f49667
3
+ metadata.gz: ac970ad7ca291be8da14df6ae0a95deff1c68b0ce3ea5920938f93ed0f38acf4
4
+ data.tar.gz: 14c846fafe3ab9106345dc624a8f408f5b35caeca3b81be5eaed511d8af028af
5
5
  SHA512:
6
- metadata.gz: 105a4b52d22ab7a302880ae2c64584ec4e4c5c8f01a70289d1d9267ab73ab83f5a1a989f3a476cb6444e1ee770b1313dfc3607ed168cca0e29640c7949dbc7f6
7
- data.tar.gz: 4ca4ff9fa7aa2dfb303a3ceb15a062f7658f4810dfd22b9387fbe63020c106c01194202e03ff26a35381dbba76256dab9cb1cde696b2ed76adc30d37a3d74adb
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.1"
4
+ VERSION = "0.36.0"
5
5
  end
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.1
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson