peppermint 0.1.15 → 0.1.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 94c84d4e2a0388ac8536fc3cfd8cc5c87f40c2f4d1e5d138b2f12e6597327470
4
- data.tar.gz: c0eaa95720187c97cb27ef96313409673ce3fcd6a2406916414eb1dc24eb28c9
3
+ metadata.gz: c6847eb4e14baa0f6e4946f0726df80c4eb42a98fa0ea2973f1a16fb35e8ae8c
4
+ data.tar.gz: a20b4545443d4bdb01ecc2c67f721f5fe58be024924515520e585d72fa3c4990
5
5
  SHA512:
6
- metadata.gz: 524fbb1a1ed6212adc128c441256139f5ad9694d4af3e41738223ca6f809620babe08832b9c67c93d185d416d5a0ff6d1feda2aa112101701c264e5aa97015ef
7
- data.tar.gz: 69c811a5faac61aa463ebcc7bb11d82c2589f6683e5e1b7b972c0eeb90502c91b0d3188a3fe9424672b2831fc6844796f2ddb63b4a02ddbdc7ee7845bcf6444c
6
+ metadata.gz: 0e8325ffe7c61a79d7a6d50ecb7af8f4f993f37b70c446607bfda142a475fa01271d00f6b70e90c24a07e249751f73dcba2000cc24d8b85c84669d05ad48e22b
7
+ data.tar.gz: 78cfbc1f48ecdc1fbc64111dff81ebedda23e1cc79fd6fbb5d75dac0ee18d5502e971bc6eb633a9fabcd9e2c619602c6940f20ab930873ee064395bb03c7b51d
data/.rubocop.yml CHANGED
@@ -1,4 +1,4 @@
1
- <%
1
+ <%
2
2
  require "open3"
3
3
  def gem_exists(gem)
4
4
  res = Open3.popen3("bundle", "info", "^#{gem}$") do |i, o, e, t|
@@ -18,13 +18,14 @@ require:
18
18
  - standard-performance
19
19
  - rubocop-performance
20
20
  - rubocop-rake
21
- <%= "- rubocop-rspec" if gem_exists "rspec" %>
21
+ <%= "- rubocop-factory_bot" if gem_exists "factory_bot" %>
22
+ <%= "- rubocop-rspec" if gem_exists "rspec-core" %>
22
23
  <%= "- rubocop-rails" if gem_exists "rails" %>
23
24
  <%= "- rubocop-rspec_rails" if gem_exists "rails" %>
24
25
  <%= "- rubocop-capybara" if gem_exists "capybara" %>
25
-
26
+
26
27
  inherit_gem:
27
- standard: config/base.yml
28
+ standard: config/base.yml
28
29
  <%= "standard-rails: config/base.yml" if gem_exists "rails" %>
29
30
  standard-performance: config/base.yml
30
31
  standard-custom: config/base.yml
@@ -34,28 +35,30 @@ Layout/LineLength:
34
35
  Enabled: false
35
36
  Layout/EmptyLineBetweenDefs:
36
37
  AllowAdjacentOneLineDefs: true
38
+ Layout/ExtraSpacing:
39
+ Enabled: false
40
+ Layout/SpaceBeforeComma:
41
+ Enabled: false
42
+ Layout/SpaceInsideHashLiteralBraces:
43
+ Enabled: false
37
44
  Style/DisableCopsWithinSourceCodeDirective:
38
45
  Enabled: true
39
46
  Rake/Desc:
40
47
  Enabled: false
41
- <%
42
- <<RSPEC if gem_exists "rspec"
48
+ <% if gem_exists "rails" %>
49
+ Rails/ThreeStateBooleanColumn:
50
+ Enabled: false
51
+ <% end %>
52
+ <% if gem_exists "rspec-core" %>
43
53
  RSpec/MultipleExpectations:
44
54
  Enabled: false
45
55
  RSpec/ExampleLength:
46
56
  Enabled: false
47
- RSPEC
48
- %>
57
+ <% end %>
49
58
 
50
59
  #
51
60
  # Ignore differences from Rails autogeneration
52
61
  #
53
- Layout/SpaceInsideHashLiteralBraces:
54
- Exclude:
55
- - 'config/environments/*'
56
- Layout/ExtraSpacing:
57
- Exclude:
58
- - 'config/environments/*'
59
62
  Style/GlobalStdStream:
60
63
  Exclude:
61
64
  - 'config/environments/*'
@@ -134,3 +137,4 @@ AllCops:
134
137
  - 'vendor/**/*'
135
138
  - '.git/**/*'
136
139
  - 'db/migrate/*.active_storage.rb'
140
+ - 'db/migrate/*.acts_as_taggable_on_engine.rb'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- peppermint (0.1.15)
4
+ peppermint (0.1.17)
5
5
  pry-byebug (~> 3.10)
6
6
  rake (~> 13.2)
7
7
  rdoc (~> 6.7)
@@ -38,7 +38,7 @@ GEM
38
38
  diff-lcs (1.5.1)
39
39
  drb (2.2.1)
40
40
  e2mmap (0.1.0)
41
- i18n (1.14.5)
41
+ i18n (1.14.6)
42
42
  concurrent-ruby (~> 1.0)
43
43
  jaro_winkler (1.6.0)
44
44
  json (2.7.2)
@@ -92,7 +92,7 @@ GEM
92
92
  rubocop-performance (1.21.1)
93
93
  rubocop (>= 1.48.1, < 2.0)
94
94
  rubocop-ast (>= 1.31.1, < 2.0)
95
- rubocop-rails (2.26.1)
95
+ rubocop-rails (2.26.2)
96
96
  activesupport (>= 4.2.0)
97
97
  rack (>= 1.1)
98
98
  rubocop (>= 1.52.0, < 2.0)
@@ -137,7 +137,7 @@ GEM
137
137
  tilt (2.4.0)
138
138
  tzinfo (2.0.6)
139
139
  concurrent-ruby (~> 1.0)
140
- unicode-display_width (2.5.0)
140
+ unicode-display_width (2.6.0)
141
141
  yard (0.9.37)
142
142
 
143
143
  PLATFORMS
@@ -147,4 +147,4 @@ DEPENDENCIES
147
147
  peppermint!
148
148
 
149
149
  BUNDLED WITH
150
- 2.4.19
150
+ 2.5.19
data/biome.json CHANGED
@@ -5,6 +5,7 @@
5
5
  "app/assets/stylesheets/application.tailwind.css",
6
6
  "config/provision/production.json",
7
7
  "node_modules",
8
+ "dist",
8
9
  "doc",
9
10
  ".yardoc"
10
11
  ]
@@ -13,6 +14,7 @@
13
14
  "ignore": [
14
15
  "app/assets/builds/**",
15
16
  "app/assets/stylesheets/application.tailwind.css",
17
+ "dist",
16
18
  "doc",
17
19
  "package.json",
18
20
  "node_modules",
@@ -1,4 +1,4 @@
1
1
  module Peppermint
2
2
  GEM_NAME = File.basename(__dir__)
3
- VERSION = "0.1.15"
3
+ VERSION = "0.1.17"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: peppermint
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.15
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - "'j'"
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-21 00:00:00.000000000 Z
11
+ date: 2024-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry-byebug