salsify_rubocop 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -0
- data/CHANGELOG.md +3 -0
- data/conf/rubocop_without_rspec.yml +5 -0
- data/lib/salsify_rubocop/version.rb +1 -1
- data/salsify_rubocop.gemspec +2 -2
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a27b274167c99b0c602b8179de3b2cc833019ebcdb893278604a5259dc6b011
|
4
|
+
data.tar.gz: b15ac3e56b5ea6095f0dac07858e00aa55a22239dd86611ab97775cbee047d86
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3709691e18170f955bc6825637234031dde141fa27a402ac4e3e64c904ee9a063c631587fd3b163a21e94a08a971e36be7d98600baebae8fd894e337c3de03e
|
7
|
+
data.tar.gz: 8adc382c5cb2ba0b196c12452591e5f42af2f7f687c1f2c71b43d62fdf9c47523572c3a535acb4fa7f42ee44af830c941b0bdeee34a82ce47cb8bae350ef0586
|
data/.github/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
* @jturkel @erikkessler1 @skarger
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# salsify_rubocop
|
2
2
|
|
3
|
+
## 1.2.0
|
4
|
+
- Disable Style/ExplicitBlockArgument for performance reasons, https://github.com/JuanitoFatas/fast-ruby/blob/master/code/proc-and-block/proc-call-vs-yield.rb.
|
5
|
+
|
3
6
|
## 1.1.0
|
4
7
|
- Re-enable version specifier checks for the `Bundler/GemComment` cop, for limiting version specifiers only.
|
5
8
|
- Upgrade to `rubocop` v1.13.0
|
@@ -78,6 +78,11 @@ Style/EmptyLiteral:
|
|
78
78
|
Style/EmptyMethod:
|
79
79
|
Enabled: false
|
80
80
|
|
81
|
+
# Disabling due to performance implications.
|
82
|
+
# https://github.com/JuanitoFatas/fast-ruby/blob/master/code/proc-and-block/proc-call-vs-yield.rb
|
83
|
+
Style/ExplicitBlockArgument:
|
84
|
+
Enabled: false
|
85
|
+
|
81
86
|
# The Exclude list is not additive. Projects that exclude file names will
|
82
87
|
# need to re-add Appraisals.
|
83
88
|
Naming/FileName:
|
data/salsify_rubocop.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ['Salsify, Inc']
|
11
11
|
spec.email = ['engineering@salsify.com']
|
12
12
|
|
13
|
-
spec.summary = 'Shared
|
13
|
+
spec.summary = 'Shared RuboCop configuration'
|
14
14
|
spec.description = spec.summary
|
15
15
|
spec.homepage = 'https://github.com/salsify/salsify_rubocop'
|
16
16
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
# delete this section to allow pushing this gem to any host.
|
21
21
|
if spec.respond_to?(:metadata)
|
22
22
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
23
|
-
|
23
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
24
24
|
else
|
25
25
|
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
|
26
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: salsify_rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Salsify, Inc
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -122,7 +122,7 @@ dependencies:
|
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: 2.0.0
|
125
|
-
description: Shared
|
125
|
+
description: Shared RuboCop configuration
|
126
126
|
email:
|
127
127
|
- engineering@salsify.com
|
128
128
|
executables: []
|
@@ -130,6 +130,7 @@ extensions: []
|
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
132
|
- ".circleci/config.yml"
|
133
|
+
- ".github/CODEOWNERS"
|
133
134
|
- ".gitignore"
|
134
135
|
- ".rspec"
|
135
136
|
- ".rubocop.yml"
|
@@ -160,7 +161,8 @@ licenses:
|
|
160
161
|
- MIT
|
161
162
|
metadata:
|
162
163
|
allowed_push_host: https://rubygems.org
|
163
|
-
|
164
|
+
rubygems_mfa_required: 'true'
|
165
|
+
post_install_message:
|
164
166
|
rdoc_options: []
|
165
167
|
require_paths:
|
166
168
|
- lib
|
@@ -175,8 +177,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
175
177
|
- !ruby/object:Gem::Version
|
176
178
|
version: '0'
|
177
179
|
requirements: []
|
178
|
-
rubygems_version: 3.
|
179
|
-
signing_key:
|
180
|
+
rubygems_version: 3.2.22
|
181
|
+
signing_key:
|
180
182
|
specification_version: 4
|
181
|
-
summary: Shared
|
183
|
+
summary: Shared RuboCop configuration
|
182
184
|
test_files: []
|