nextgen 0.8.0 → 0.10.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: 1d7d274699408c9756631adaac4969412bce5589a6e5c52aa49eafa66a8a72e1
4
- data.tar.gz: 8a206e399158c63226f7f3cbc278925458d993a38a9a6b4b2fd96ba50d0cbcf6
3
+ metadata.gz: 99667a7ba794d38f8ca3852c3bedf49d0ce0c6f3b0fc1617ec61fdd4c112b4cc
4
+ data.tar.gz: 9b715a0abcaab886c7c1885bec322ca0587c1810565b0ff9430f64242571317b
5
5
  SHA512:
6
- metadata.gz: 7aeadac98c5e15621d0991569807746be81f65c6b0f627efcc4eaaf3e21507f6ffc7e25890d208ef6676b1a2fffd36314521fd2b2c56dc284cccff2936afcbcb
7
- data.tar.gz: '0008d52c832a83813280de39089c6cafa562815efb42b28ea24f7fcca9e1a7d02bf2e3ccf588e2388cc0c8cee785a798e2303b128c89f1c5f368b494460f22ad'
6
+ metadata.gz: 5670d3a6881877846ccf63b07628b6469c4b89f19efc847763e9f8690110b4cfa2bb29d83623bb3f27d0c4bc8bbec6d17866bf2b145c595b6d6eb20473a44f78
7
+ data.tar.gz: 899c6f98a0866da87507a80a626d2d5bb7576261fdce379cb98860b97b58a993d243be9d758d15a0248c91aa436cacdc0d6d1d839ccc07bdab9c6caaad227c8f
@@ -1,3 +1,3 @@
1
1
  module Nextgen
2
- VERSION = "0.8.0".freeze
2
+ VERSION = "0.10.0".freeze
3
3
  end
@@ -63,7 +63,7 @@ PreCommit:
63
63
  on_warn: fail
64
64
  <% end -%>
65
65
 
66
- <% if File.exist?(".stylelintrc.cjs") -%>
66
+ <% if File.exist?(".stylelintrc.js") -%>
67
67
  Stylelint:
68
68
  enabled: true
69
69
  required_executable: npx
data/template/bin/setup CHANGED
@@ -4,12 +4,12 @@
4
4
  # This script is idempotent, so that you can run it at any time and get an expectable outcome.
5
5
  # Add necessary setup steps to this method.
6
6
  def setup!
7
+ env ".env", from: ".env.sample"
7
8
  run "bundle install" if bundle_needed?
8
9
  run "overcommit --install" if overcommit_installable?
9
10
  run "bin/rails db:prepare" if database_present?
10
11
  run "yarn install" if yarn_needed?
11
12
  run "bin/rails tmp:create" if tmp_missing?
12
- env ".env", from: ".env.sample"
13
13
  run "bin/rails restart"
14
14
 
15
15
  if git_safe_needed?
@@ -84,7 +84,7 @@ end
84
84
 
85
85
  def say_status(label, message, color = :green)
86
86
  label = label.to_s.rjust(12)
87
- puts [colorize(label, color), message].join(" ")
87
+ puts [colorize(label, color), message.gsub(/^/, " " * 13).strip].join(" ")
88
88
  end
89
89
 
90
90
  def colorize(str, color)
@@ -5,7 +5,6 @@ require "capybara/rspec"
5
5
 
6
6
  Capybara.configure do |config|
7
7
  config.default_max_wait_time = 2
8
- config.disable_animation = true
9
8
  config.enable_aria_label = true
10
9
  config.server = :puma, {Silent: true}
11
10
  config.test_id = "data-testid"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nextgen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-09 00:00:00.000000000 Z
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
219
219
  - !ruby/object:Gem::Version
220
220
  version: '0'
221
221
  requirements: []
222
- rubygems_version: 3.5.3
222
+ rubygems_version: 3.5.5
223
223
  signing_key:
224
224
  specification_version: 4
225
225
  summary: Generate your next Rails app interactively!