matkoniecz-ruby-style 1.3 → 1.4
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 +4 -4
- data/matkoniecz-ruby-style.gemspec +2 -2
- data/standard_rubocop_config.yml +10 -6
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e085f926eb18bcf8263b4a47a9b949db90c9ec4a6473ce1fda95208ddc8a771b
|
|
4
|
+
data.tar.gz: 3f852ec2950679e9c9718ab23b9e12b98a5d331fde825b8bcbb863b1e98a8682
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c159e0405463d3f96223fde291c196531353faae5ff0b0d26a609079253ce2aa6cc90618eef115e38d28b056d558f854817bfb22ea0742268eda9a1f63b4cb8a
|
|
7
|
+
data.tar.gz: e4bbd41dfd9aa7f02442985eb77cf3de3ed16120237b48d179a67d552b8c88a43ce6e0b623f6705fa9f02fbe21a56109355898040cb42f823d2ab21e403c1344
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "matkoniecz-ruby-style"
|
|
3
|
-
spec.version = 1.
|
|
3
|
+
spec.version = 1.4
|
|
4
4
|
spec.authors = ["Mateusz Konieczny"]
|
|
5
5
|
spec.email = ["matkoniecz@gmail.com"]
|
|
6
6
|
|
|
@@ -16,6 +16,6 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
spec.bindir = "exe"
|
|
17
17
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
18
18
|
spec.require_paths = ["lib"]
|
|
19
|
-
spec.add_dependency "rubocop", "~> 0.
|
|
19
|
+
spec.add_dependency "rubocop", "~> 0.77"
|
|
20
20
|
spec.add_dependency "rubocop-rspec", "~> 1.29.1"
|
|
21
21
|
end
|
data/standard_rubocop_config.yml
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
require: rubocop-rspec
|
|
2
2
|
|
|
3
3
|
AllCops:
|
|
4
|
-
TargetRubyVersion: 2.
|
|
4
|
+
TargetRubyVersion: 2.6
|
|
5
|
+
|
|
6
|
+
# disabled due to bug reported as https://github.com/rubocop-hq/rubocop/issues/6630
|
|
7
|
+
Style/CommentAnnotation:
|
|
8
|
+
Enabled: false
|
|
9
|
+
|
|
10
|
+
# disable due to a bug reported in https://github.com/rubocop-hq/rubocop/issues/7569
|
|
11
|
+
Style/YodaCondition:
|
|
12
|
+
Enabled: false
|
|
5
13
|
|
|
6
14
|
# not preferred as this rule makes harder to move/add/remove items
|
|
7
15
|
Style/TrailingCommaInArrayLiteral:
|
|
@@ -81,10 +89,6 @@ Style/StringLiteralsInInterpolation:
|
|
|
81
89
|
Style/NumericPredicate:
|
|
82
90
|
Enabled: false
|
|
83
91
|
|
|
84
|
-
# disabled due to bug reported as https://github.com/rubocop-hq/rubocop/issues/6630
|
|
85
|
-
Style/CommentAnnotation:
|
|
86
|
-
Enabled: false
|
|
87
|
-
|
|
88
92
|
# this blank lines are neither helpful nor useful
|
|
89
93
|
Layout/EmptyLineAfterGuardClause:
|
|
90
94
|
Enabled: false
|
|
@@ -93,7 +97,7 @@ Layout/EmptyLineAfterGuardClause:
|
|
|
93
97
|
Naming/AccessorMethodName:
|
|
94
98
|
Enabled: false
|
|
95
99
|
|
|
96
|
-
Naming/
|
|
100
|
+
Naming/MethodParameterName:
|
|
97
101
|
AllowedNames:
|
|
98
102
|
- bb # standard shortening of "bounding box"
|
|
99
103
|
- r # standard shortening of "radius"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: matkoniecz-ruby-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.4'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mateusz Konieczny
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-12-
|
|
11
|
+
date: 2019-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
19
|
+
version: '0.77'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0.
|
|
26
|
+
version: '0.77'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubocop-rspec
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|