Dutchie-Style 3.0.0 → 3.0.2

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: f49ba6bf36f8caa607d18099ca4f8d3810b444c22abee8cbffa1fbd92812da7c
4
- data.tar.gz: cf1684201eb4a1c27d47db5d43104f392b18ce334582a7a090eb6713287dc518
3
+ metadata.gz: 29f417fbb4fee1d3364169e3efa9734437c6128adeb157399e47989740260d09
4
+ data.tar.gz: 86583c93459bc1e399be84f833e78cdb8833731e0c19b094f18ad02deae6f781
5
5
  SHA512:
6
- metadata.gz: df98f9aef6cd815fb4d1aad802f568ab0dae384e4eba02694b8cd17d067c9524620a2c8e8356bac442bdbc30734b9bb330ac0ade4313034c5ff6b68495b3f5ed
7
- data.tar.gz: daf381202cc98aa42379171ac8cbe6c441d62e39e803a52dadf26d882301ecd6cc5d5f337c6c88170cb22f2c2dee6e0680814c8866db75fd292c409d11c1782c
6
+ metadata.gz: b20673b1458536a57a47420ec3581b9a9a48f6488888f55f2ff6e89b8b10f0e968bee3677d2f25958eba05b40cdfa3d9eb48f5d779eb595611342963867d6bfc
7
+ data.tar.gz: 36b8db40ab2bc5e563a68d8a77c97a5f017011ec11eb1bdcebf26328096a68acf1b26148819727c69028ddf5c3ca8fd2818cb1c3f4d2ee8f9bd1e6a24bc684c8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- Dutchie-Style (3.0.0)
4
+ Dutchie-Style (3.0.2)
5
5
  rubocop (~> 1.81)
6
6
  rubocop-capybara (~> 3.0)
7
7
  rubocop-factory_bot (~> 2.28)
@@ -41,7 +41,7 @@ GEM
41
41
  minitest (6.0.6)
42
42
  drb (~> 2.0)
43
43
  prism (~> 1.5)
44
- parallel (2.1.0)
44
+ parallel (1.28.0)
45
45
  parser (3.3.12.0)
46
46
  ast (~> 2.4.1)
47
47
  racc
@@ -118,4 +118,4 @@ DEPENDENCIES
118
118
  rubocop-rails (~> 2.32)
119
119
 
120
120
  BUNDLED WITH
121
- 2.4.8
121
+ 2.6.2
data/config/default.yml CHANGED
@@ -1,3 +1,6 @@
1
+ require:
2
+ - dutchie-style
3
+
1
4
  plugins:
2
5
  - rubocop-rspec
3
6
  - rubocop-rspec_rails
@@ -26,10 +29,13 @@ AllCops:
26
29
 
27
30
  # Capybara/RSpec cops
28
31
 
29
- # Allows us to use scenario/feature instead of it/describes
32
+ # Allows us to use scenario/feature instead of it/describes.
33
+ # PreferredMethods must be a Hash (dialect method => preferred method) for
34
+ # RSpec/Dialect; it crashes if given an Array. Since the intent here is to
35
+ # permit the feature/scenario dialect rather than enforce describe/it, the
36
+ # correct config is simply disabling the cop.
30
37
  RSpec/Dialect:
31
- Enabled: true
32
- PreferredMethods: ['feature', 'scenario']
38
+ Enabled: false
33
39
 
34
40
  # https://docs.rubocop.org/rubocop/1.10/cops_layout.html#layoutclassstructure
35
41
  Layout/ClassStructure:
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Dutchie
4
4
  module Style
5
- VERSION = "3.0.0"
5
+ VERSION = "3.0.2"
6
6
  public_constant :VERSION
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Dutchie-Style
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Ostrowski
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-08-21 00:00:00.000000000 Z
11
+ date: 2026-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop