nextgen 0.28.1 → 0.29.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: 1ea2e1d45c79b83e023bf749c3428d0cb8f896e81e480fe4099b8e26620edd2e
4
- data.tar.gz: e605a95e89f3ad516e58515016bec87531713e928e5cca565d9ff051d867d7ba
3
+ metadata.gz: 92cd9ce7d8e32f2f57dbc654f24f91095dd612db6d1de70398d6395241222fa2
4
+ data.tar.gz: 2cab0e61fca70665616cfeaa1fcb3f96a023ceec7a27f616a05827abb3af4f13
5
5
  SHA512:
6
- metadata.gz: 675a585287eae56813bd5b895f629ff7dec15d019318089076ffd4d31cf6dd4571daefe2cf37b6089948d66ade6107b8f076d43c9d9c6421110ec8885585f08a
7
- data.tar.gz: 2507548b71033e3c2ebaa0482a68a373f1a12e1cdef511f6ef295bf69b0318565dadb2531b74b062e7f7ea9d799bea4e69af5252a4d3f12224959398dc63db78
6
+ metadata.gz: bedbf0a5f62fe9b926830f286d0fba7f44fdb2926d2e93c981646811f7665aa05ece7ea7f8fe0f0c66f3e3a1d88ab4a7edb7c25dd130cfe53fe5722f07385219
7
+ data.tar.gz: 295bacce292db83d75b7bceb3ba05e2b504138d2068dfefdc321fe6beee4e460aa0fef6c6f57c2207ca6b03b1df39943182c664e1ba14157cb0ea4d2db62c094
@@ -4,7 +4,6 @@ say_git "Install stylelint"
4
4
  add_js_packages(
5
5
  "stylelint",
6
6
  "stylelint-config-standard",
7
- "stylelint-declaration-strict-value",
8
7
  "stylelint-prettier",
9
8
  "prettier",
10
9
  "npm-run-all",
@@ -1,10 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "rails/version"
4
+
3
5
  module Nextgen
4
6
  module RailsCommand
5
7
  class << self
6
8
  def run(*args, raise_on_error: true)
7
- command = "rails", *args
9
+ command = "rails", "_#{::Rails.version}_", *args
8
10
  say_status :run, *command.join(" ")
9
11
  with_original_bundler_env do
10
12
  system(*command, exception: raise_on_error)
@@ -91,7 +91,7 @@ module Nextgen
91
91
  end
92
92
 
93
93
  def postgresql?
94
- database == "postgresql"
94
+ database == :postgresql
95
95
  end
96
96
 
97
97
  def test_framework=(framework)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nextgen
4
- VERSION = "0.28.1"
4
+ VERSION = "0.29.0"
5
5
  end
@@ -59,7 +59,7 @@ PreCommit:
59
59
  RuboCop:
60
60
  enabled: true
61
61
  required_executable: bundle
62
- command: ["bundle", "exec", "rubocop"]
62
+ command: ["bundle", "exec", "rubocop", "-c", ".rubocop.yml"]
63
63
  on_warn: fail
64
64
  <% end -%>
65
65
 
@@ -68,8 +68,6 @@ PreCommit:
68
68
  enabled: true
69
69
  required_executable: npx
70
70
  command: ["npx", "--no-install", "stylelint"]
71
- env:
72
- NODE_OPTIONS: --no-deprecation
73
71
  include:
74
72
  - app/assets/**/*.css
75
73
  - app/components/**/*.css
@@ -1,7 +1,4 @@
1
- import strictValuePlugin from "stylelint-declaration-strict-value";
2
-
3
1
  export default {
4
- plugins: [strictValuePlugin],
5
2
  extends: ["stylelint-config-standard", "stylelint-prettier/recommended"],
6
3
  rules: {
7
4
  "color-hex-length": null,
@@ -18,11 +15,10 @@ export default {
18
15
  ignoreProperties: ["font-named-instance"],
19
16
  },
20
17
  ],
21
- "scale-unlimited/declaration-strict-value": [
22
- "/color/",
18
+ "declaration-property-value-allowed-list": [
23
19
  {
24
- disableFix: true,
25
- ignoreValues: [
20
+ "/color/": [
21
+ /^var\(--/,
26
22
  "currentcolor",
27
23
  "inherit",
28
24
  "initial",
@@ -30,6 +26,9 @@ export default {
30
26
  "unset",
31
27
  ],
32
28
  },
29
+ {
30
+ message: "Found hard-coded color value; expected var(--...)",
31
+ },
33
32
  ],
34
33
  "selector-class-pattern": [
35
34
  // classes must be in BEM form, like this:
@@ -3,9 +3,9 @@
3
3
  ActiveSupport.on_load(:action_dispatch_system_test_case) do
4
4
  require "capybara"
5
5
  require "capybara/rails"
6
- <% if rspec? -%>
6
+ <% if rspec? -%>
7
7
  require "capybara/rspec"
8
- <% end -%>
8
+ <% end -%>
9
9
 
10
10
  Capybara.configure do |config|
11
11
  config.default_max_wait_time = 2
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.28.1
4
+ version: 0.29.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-10-27 00:00:00.000000000 Z
11
+ date: 2024-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties