rentacop 0.1.6 → 0.1.8

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: f1985f70d2d7be3d1558cb0db29c6944c3d9e7d9b80d0665bac8d0fa384bdfb5
4
- data.tar.gz: fe15bf4583981832631ce1859ecdfd0978daaef743d1ef8862fcc1a8019bbb17
3
+ metadata.gz: b63027710ed218276b118317b3a4df674c4ee7b09ff4b049b8a7550b0fb46c34
4
+ data.tar.gz: 325082f47ede9f28b44014799d5db6ee14e84b990c9a88820f2157c06ea9c0d2
5
5
  SHA512:
6
- metadata.gz: 2d5ad27b5a316b681f69f653d0b18682bf2b811da5c8679df1c0cd171b9e3489471e92b965b19446078fb6e42faa70708dc3c0775822a214f2c1ba1dabb1e3ff
7
- data.tar.gz: 7b88c8bccc5e5cecf1cf98cca47f97aa7a3450a553fe6605ba20fe7e49a000af5ccec66875cf7061930094309e848f965b5de27359fdb5d05aed2c20e1b22c8f
6
+ metadata.gz: 5730d1a228ca3a997f4d5b43a3c10376306a9a43c3acac195f0afd78956c0848dc4eccf2cd5a210ec8b0df7fdaa44d210f36e0aeaa0a528934ea3e309bd5504b
7
+ data.tar.gz: 014c2af60126738c3434c3e54de5ff32b9ab8cb8a0c8beb9af235c18049a37551f01d53a4e9aa98835e11addde3a6ec4c7b3737437405a813cf3a6faea098781
data/README.md CHANGED
@@ -14,7 +14,7 @@ Or, add this line to your Gemfile:
14
14
 
15
15
  ```ruby
16
16
  group :test, :development do
17
- gem "rentacop"
17
+ gem 'rentacop'
18
18
  end
19
19
  ```
20
20
 
@@ -1,3 +1,3 @@
1
1
  module Rentacop
2
- VERSION = '0.1.6'
2
+ VERSION = '0.1.8'
3
3
  end
data/rentacop.yml CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  AllCops:
4
4
  NewCops: enable
5
- TargetRubyVersion: 2.6
5
+ TargetRubyVersion: 3.0
6
6
  Exclude:
7
7
  - 'spec/approvals/**/*'
8
8
 
@@ -95,7 +95,11 @@ Naming/MethodParameterName:
95
95
  Enabled: false
96
96
 
97
97
  # Allow `has_`, `is_` prefixes
98
- Naming/PredicateName:
98
+ Naming/PredicatePrefix:
99
+ Enabled: false
100
+
101
+ # Allow boolean methods to not end with ?
102
+ Naming/PredicateMethod:
99
103
  Enabled: false
100
104
 
101
105
 
@@ -146,6 +150,10 @@ Style/HashSyntax:
146
150
  Style/IfUnlessModifier:
147
151
  Enabled: false
148
152
 
153
+ # Allow long numbers without undescores
154
+ Style/NumericLiterals:
155
+ Enabled: false
156
+
149
157
  # Allow top level `include` in some places
150
158
  Style/MixinUsage:
151
159
  Exclude:
data/rspec.yml CHANGED
@@ -42,3 +42,7 @@ RSpec/SubjectStub:
42
42
  # Allow nameless `double`
43
43
  RSpec/VerifiedDoubles:
44
44
  Enabled: false
45
+
46
+ # Allow multiple calls to `subject`
47
+ RSpec/RepeatedSubjectCall:
48
+ Enabled: false
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rentacop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Ben Shitrit
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-12-15 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: Collection of more relaxed rubocop rules
14
13
  email: db@dannyben.com
@@ -30,7 +29,6 @@ metadata:
30
29
  homepage_uri: https://github.com/dannyben/rentacop
31
30
  source_code_uri: https://github.com/DannyBen/rentacop
32
31
  rubygems_mfa_required: 'true'
33
- post_install_message:
34
32
  rdoc_options: []
35
33
  require_paths:
36
34
  - lib
@@ -38,15 +36,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
38
36
  requirements:
39
37
  - - ">="
40
38
  - !ruby/object:Gem::Version
41
- version: 2.6.0
39
+ version: '3.0'
42
40
  required_rubygems_version: !ruby/object:Gem::Requirement
43
41
  requirements:
44
42
  - - ">="
45
43
  - !ruby/object:Gem::Version
46
44
  version: '0'
47
45
  requirements: []
48
- rubygems_version: 3.3.26
49
- signing_key:
46
+ rubygems_version: 3.6.9
50
47
  specification_version: 4
51
48
  summary: Collection of more relaxed rubocop rules
52
49
  test_files: []