foobara-rubocop-rules 1.0.0 → 1.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/rules/style.yml +8 -8
  4. data/version.rb +1 -1
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2c07cfa5fce6445698ca345caec62ec597ce8c8522e49cb2346c8bd144ec6c1
4
- data.tar.gz: f3bdc075b109b447b4eaf2cc7b1add50d1a0fc96a64ca4ac7e7b268ed2b4db6b
3
+ metadata.gz: c642fa7b845948e7e689505526a1d3ee8f9df92ae30ade308a2bda65e0a1a5cb
4
+ data.tar.gz: 191cb2a1839dd40f4d0c1e115f0572c593d1565b1655c18be88a8a8f26a19c0e
5
5
  SHA512:
6
- metadata.gz: b493f603b29778732a04d4c3476439893db78a50fead402c20db0b60e9fc536e732f5787128dd2340d4b3d48f3f25e197ab0d846ad84554fa590d382ddcffccd
7
- data.tar.gz: 73b75198750bb383aa2f87613eaf18cc3ccf3983ac76e610d4757ee52282c8129c53cddf83f437d6a6c792cab1f953a44911d978b92f08cec084722d29f986dd
6
+ metadata.gz: ec2a3650d66f53c2c927dcccc95af07e8422c36e5f42184d6cf632dbf608bce2f673bd5b3f85a731c13c32f4c634562a20882cc5569d0a1fc23a88927cb29956
7
+ data.tar.gz: c3b400839e3f49cc63a5dd8b18f1ea8b1388f295a8a13ecc1e78d6d92a2008f3f1cbf9fe85b6bd13f20b0c44614c0b1c6d8e1bd385f5c879df8f1e68bedf8579
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.0.2] - 2025-09-05
2
+
3
+ - Disable Style/Lambda, StringLiterals..., SymbolArray, WordArray
4
+
5
+ ## [1.0.1] - 2025-08-15
6
+
7
+ - Disable Style/MultipleComparison to allow for some potential optimizations
8
+
1
9
  ## [1.0.0] - 2025-06-06
2
10
 
3
11
  - Fix renamed Naming/PredicatePrefix
data/rules/style.yml CHANGED
@@ -31,7 +31,10 @@ Style/IfUnlessModifier:
31
31
  Enabled: false
32
32
 
33
33
  Style/Lambda:
34
- EnforcedStyle: literal
34
+ Enabled: false
35
+
36
+ Style/MultipleComparison:
37
+ Enabled: false
35
38
 
36
39
  Style/MultilineBlockChain:
37
40
  Enabled: false
@@ -58,19 +61,16 @@ Style/SoleNestedConditional:
58
61
  Enabled: false
59
62
 
60
63
  Style/StringLiterals:
61
- Enabled: true
62
- EnforcedStyle: double_quotes
64
+ Enabled: false
63
65
 
64
66
  Style/StringLiteralsInInterpolation:
65
- Enabled: true
66
- EnforcedStyle: double_quotes
67
+ Enabled: false
67
68
 
68
69
  Style/SafeNavigationChainLength:
69
70
  Enabled: false
70
71
 
71
- # turning these two off just to allow people to think about fewer aspects of Ruby syntax
72
72
  Style/SymbolArray:
73
- EnforcedStyle: brackets
73
+ Enabled: false
74
74
 
75
75
  Style/WordArray:
76
- EnforcedStyle: brackets
76
+ Enabled: false
data/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Foobara
2
2
  module RubocopRules
3
- VERSION = "1.0.0".freeze
3
+ VERSION = "1.0.2".freeze
4
4
  MINIMUM_RUBY_VERSION = ">= 3.4.0".freeze
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-rubocop-rules
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-06-06 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rubocop
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubygems_version: 3.6.2
83
+ rubygems_version: 3.6.9
84
84
  specification_version: 4
85
85
  summary: Common rubocop rules used in various foobara projects.
86
86
  test_files: []