nextgen 0.17.0 → 0.17.1

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: f9bb3fbf79823d7029b6d3f3fadda859e223df7dd10adcc3b8c4d2c65b3c2a04
4
- data.tar.gz: db43cfa7369353bb4c8caf0d1de807814fdf6fc3a4918cdf8d0bf69fe25e2a14
3
+ metadata.gz: 38db6779e6011d4a674dbfcb2337f6d54778694a5c661163e79f9a22b279bb32
4
+ data.tar.gz: f4b8be15108161721b9ad1d2b48ede9715ef5a73941fde89a8a02bd6c1a79676
5
5
  SHA512:
6
- metadata.gz: 1c2d3a708b62075ff5d47c5edd9159a0a70c2750c291b1460b8f29d91dd0eedd01df98b80e4579e1007d8a9e919a98cd71a9bb0fe76a74be48d0a3d0f6ba3f3d
7
- data.tar.gz: 8a1a5a9553f4ec332f294a1f8d4dae880d7e9e52c36ce29c368e13427d940c191d7da69d262980e8c2af2fa6154326199fc4b752c2ecfaf21fed8af2277e2af7
6
+ metadata.gz: e986c9049350c61178690483c17b6a1ad1c905a7ed513ba101d1eb6d1718d22fddf67a82e2c436afd9f6b6370460030eaf12621b701dfffa3cee53216a66d4fa
7
+ data.tar.gz: b2a46622619b7bc69b04decccba76197f98624ebaa636d570e21d8db9983ad8e7d075cc025e996708fe1c02dac5b35fc579c1b282f87b1090cd9bb2f3627c671
@@ -119,7 +119,7 @@ module Nextgen
119
119
 
120
120
  desc "Apply auto-corrections"
121
121
  task fix: %w[] do
122
- Thor::Base.shell.new.say_status :OK, "All fixes applied!"
122
+ puts ">>>>>> [OK] All fixes applied!"
123
123
  end
124
124
  RUBY
125
125
  end
@@ -23,7 +23,7 @@ append_to_file "Rakefile", <<~RUBY
23
23
 
24
24
  desc "Run all checks"
25
25
  task default: %w[#{test_task}] do
26
- Thor::Base.shell.new.say_status :OK, "All checks passed!"
26
+ puts ">>>>>> [OK] All checks passed!"
27
27
  end
28
28
  RUBY
29
29
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nextgen
4
- VERSION = "0.17.0"
4
+ VERSION = "0.17.1"
5
5
  end
data/template/bin/setup CHANGED
@@ -9,7 +9,7 @@ def setup!
9
9
  run "bundle install" if bundle_needed?
10
10
  run "overcommit --install" if overcommit_installable?
11
11
  run "bin/rails db:prepare" if database_present?
12
- run "yarn install" if yarn_needed?
12
+ run "yarn install --check-files" if yarn_needed?
13
13
  run "bin/rails tmp:create" if tmp_missing?
14
14
  run "bin/rails restart"
15
15
 
@@ -49,7 +49,7 @@ def database_present?
49
49
  end
50
50
 
51
51
  def yarn_needed?
52
- File.exist?("yarn.lock") && !run("yarn check --check-files", silent: true, exception: false)
52
+ File.exist?("yarn.lock")
53
53
  end
54
54
 
55
55
  def tmp_missing?
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.17.0
4
+ version: 0.17.1
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-07-09 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties