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 +4 -4
- data/README.md +2 -2
- data/lib/rentacop/version.rb +1 -1
- data/rentacop.yml +5 -1
- data/rspec.yml +4 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: adb6dd0132b8930070ed6def34a265836aa575d6a4bad45155be609366a501b7
|
4
|
+
data.tar.gz: aa959ecbb607f1e4fee33150a15cfa8a84627f7a2c8a8e9e49a9ccdbe8c3447b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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:
|
85
|
+
TargetRubyVersion: 3.0
|
86
86
|
```
|
87
87
|
|
88
88
|
### Running `rubocop`
|
data/lib/rentacop/version.rb
CHANGED
data/rentacop.yml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
AllCops:
|
4
4
|
NewCops: enable
|
5
|
-
TargetRubyVersion:
|
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
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.
|
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:
|
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:
|
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.
|
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: []
|