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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec6518eab32e91fe9d55cddeeebe45b6c894646f416489b35d124c68ca9d45b6
4
- data.tar.gz: 29aae33cb64d4c8505bcc2d5bdc99bc316d82bdb6ecb0963f06993d3f856ef38
3
+ metadata.gz: 1a27b274167c99b0c602b8179de3b2cc833019ebcdb893278604a5259dc6b011
4
+ data.tar.gz: b15ac3e56b5ea6095f0dac07858e00aa55a22239dd86611ab97775cbee047d86
5
5
  SHA512:
6
- metadata.gz: aa3992654fbaa71f4cfbdab64203590153483e9a5a57718f72f64022ba65d7cea95bcb71665cfa229dd4f6283d883a20551e27139ce3fabaaaf1d19599ba69e3
7
- data.tar.gz: 95aa6ec7078f655bae79f0b6a53bd0037888d2fcf20465dbad819e4ed9c9749a840dadc2b54af78857da67ffb0a390ca8b8d36f670abfdac285e227bfa45de24
6
+ metadata.gz: c3709691e18170f955bc6825637234031dde141fa27a402ac4e3e64c904ee9a063c631587fd3b163a21e94a08a971e36be7d98600baebae8fd894e337c3de03e
7
+ data.tar.gz: 8adc382c5cb2ba0b196c12452591e5f42af2f7f687c1f2c71b43d62fdf9c47523572c3a535acb4fa7f42ee44af830c941b0bdeee34a82ce47cb8bae350ef0586
@@ -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:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SalsifyRubocop
4
- VERSION = '1.1.0'
4
+ VERSION = '1.2.0'
5
5
  end
@@ -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 shared RuboCop configuration'
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.1.0
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: 2021-08-19 00:00:00.000000000 Z
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 shared RuboCop configuration
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
- post_install_message:
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.1.4
179
- signing_key:
180
+ rubygems_version: 3.2.22
181
+ signing_key:
180
182
  specification_version: 4
181
- summary: Shared shared RuboCop configuration
183
+ summary: Shared RuboCop configuration
182
184
  test_files: []