rentacop 0.1.5 → 0.1.7

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: 1679962d47ab75f0458fe8204586e9f02c9a8fb01d83ac0a6e7e34cd8eabec93
4
- data.tar.gz: 03c063f70494b9ab731c7121677d383a2500a7cf8a4c15902ac62b385938b164
3
+ metadata.gz: adb6dd0132b8930070ed6def34a265836aa575d6a4bad45155be609366a501b7
4
+ data.tar.gz: aa959ecbb607f1e4fee33150a15cfa8a84627f7a2c8a8e9e49a9ccdbe8c3447b
5
5
  SHA512:
6
- metadata.gz: 745222e33336374f96d7ef88ce4cab806e48cf771ff36361756abfdcceb1b4853650b4728f6a9401a5b10bf23f86e882df6c1374c6ec41b0558cc82298fa2c29
7
- data.tar.gz: 172592a44068f58239b38bf5cdd7bcb690c77421fdfccef93b3004d2bd600608d0cf89c14b5f39dd5e4a0e3e804374d7d6248d98565eef98004c77bc7d0daf01
6
+ metadata.gz: 9e716c9ef5b6a0b5b4a9afb36515dc581365debb4733a05340d8903b5c5ccffe66ad5767db7253251a13224712014361c5dffe5cc8174f3cbc4906f8d26fdfe5
7
+ data.tar.gz: 4193c0bab7b2522f42a564e200f17070d945c834b00c2bbc962ef77e2992f6f0ee9045c138b25f12c90194d0e1c07bcd308d88af1b002d0639398284ce52145f
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
 
@@ -82,7 +82,7 @@ inherit_mode:
82
82
  - Include
83
83
 
84
84
  AllCops:
85
- TargetRubyVersion: 2.7
85
+ TargetRubyVersion: 3.0
86
86
  ```
87
87
 
88
88
  ### Running `rubocop`
@@ -1,3 +1,3 @@
1
1
  module Rentacop
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.7'
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
 
@@ -205,3 +205,7 @@ Style/TrailingCommaInArrayLiteral:
205
205
  # Prefer multi-line hashes to end with a comma for easy alteration
206
206
  Style/TrailingCommaInHashLiteral:
207
207
  EnforcedStyleForMultiline: comma
208
+
209
+ # Allow calling `super` without parentheses
210
+ Style/SuperWithArgsParentheses:
211
+ Enabled: false
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,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rentacop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Ben Shitrit
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-20 00:00:00.000000000 Z
11
+ date: 2024-03-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Collection of more relaxed rubocop rules
14
14
  email: db@dannyben.com
@@ -30,7 +30,7 @@ metadata:
30
30
  homepage_uri: https://github.com/dannyben/rentacop
31
31
  source_code_uri: https://github.com/DannyBen/rentacop
32
32
  rubygems_mfa_required: 'true'
33
- post_install_message:
33
+ post_install_message:
34
34
  rdoc_options: []
35
35
  require_paths:
36
36
  - lib
@@ -38,15 +38,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
- version: 2.6.0
41
+ version: '3.0'
42
42
  required_rubygems_version: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
46
  version: '0'
47
47
  requirements: []
48
- rubygems_version: 3.4.10
49
- signing_key:
48
+ rubygems_version: 3.5.6
49
+ signing_key:
50
50
  specification_version: 4
51
51
  summary: Collection of more relaxed rubocop rules
52
52
  test_files: []