peppermint 0.1.16 → 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: 5430f7e219a9f7a01d53eb0258802822c35a1b1fe7e4cb7957dfa569d4fefa2c
4
- data.tar.gz: 9e3f91e22f3697f785ce9573bc7044b13e5b93235e32a7cca66bf897c93ffed5
3
+ metadata.gz: c6847eb4e14baa0f6e4946f0726df80c4eb42a98fa0ea2973f1a16fb35e8ae8c
4
+ data.tar.gz: a20b4545443d4bdb01ecc2c67f721f5fe58be024924515520e585d72fa3c4990
5
5
  SHA512:
6
- metadata.gz: befad51768276590786a1bbc4fcf39780fb18c5500836b666ef719d423585a8385b6a5c4ff33e34b7682971177493df004151cefddac81ba97d98706ab2b6b4c
7
- data.tar.gz: d827fb868a6c914887267fb8dece6d5b8a5c2afd640c3ec9ca576f777e44de100f5dac7c998f77e19c242a3a3073b9fe080bfabdca703947bf0b6b85bb71bd28
6
+ metadata.gz: 0e8325ffe7c61a79d7a6d50ecb7af8f4f993f37b70c446607bfda142a475fa01271d00f6b70e90c24a07e249751f73dcba2000cc24d8b85c84669d05ad48e22b
7
+ data.tar.gz: 78cfbc1f48ecdc1fbc64111dff81ebedda23e1cc79fd6fbb5d75dac0ee18d5502e971bc6eb633a9fabcd9e2c619602c6940f20ab930873ee064395bb03c7b51d
data/.rubocop.yml CHANGED
@@ -18,7 +18,8 @@ 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" %>
@@ -48,7 +49,7 @@ Rake/Desc:
48
49
  Rails/ThreeStateBooleanColumn:
49
50
  Enabled: false
50
51
  <% end %>
51
- <% if gem_exists "rspec" %>
52
+ <% if gem_exists "rspec-core" %>
52
53
  RSpec/MultipleExpectations:
53
54
  Enabled: false
54
55
  RSpec/ExampleLength:
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- peppermint (0.1.16)
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
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.16"
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.16
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