armitage-rubocop 1.75.7 → 1.75.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a037b07769d6dd7e9951d2a7e28a1895d2f423669e3ea0d0cde4cecfa835bbb3
4
- data.tar.gz: 4e7a3bf807c6add0652a7108221586d21d45c67af6e28a7c57755aa5577a9dc0
3
+ metadata.gz: ba5e51745b0ab1263c2895cdec64edd19707e848e1ad88ae56d857047b3a31cb
4
+ data.tar.gz: 0ffee10057bf545ccdd56cfde7bd8034d6d72305e8c52a9db7a8f1eb211853a1
5
5
  SHA512:
6
- metadata.gz: a0d98f17e8ba60eb1430e0591c17a3e62a852430f7e0752f3ddf3ca890940e0e03c00667f2937e5417324c453a5b57042896448792815c7f9a76576e8612892b
7
- data.tar.gz: 1cb82e741f65d2078d87fab4d81c14e76f630ac6922777cb020505689f09d38acf2e66b9f1f734bb7a8d7792fc45074a4489b7b48a3d16a5b60e2102c403d6ac
6
+ metadata.gz: 6cf5a038c82ac11d9011546a9ba9b968c3d992fd061d66ff83bc15d542e3d813d2a648c449bc0e355cd5db1facfccece96a55f4417dfff4d22a4232da1998d3d
7
+ data.tar.gz: 1c13f64c7e5b229c8270f4df0222bc9ccd8940bb0e7205acd6ce9f32469c4329cde4a601c849968359489e1aabc907387abb007db0b8be47f8840e1f82e00692
data/.rubocop.yml CHANGED
@@ -4,5 +4,5 @@ inherit_from:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 3.4
7
+ TargetRubyVersion: 3.3
8
8
  StringLiteralsFrozenByDefault: true
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- armitage-rubocop (1.75.7)
4
+ armitage-rubocop (1.75.7.1)
5
5
  rubocop (= 1.75.7)
6
6
  rubocop-capybara (= 2.22.1)
7
7
  rubocop-factory_bot (= 2.27.1)
data/Rakefile CHANGED
@@ -15,14 +15,16 @@ require 'rubocop-factory_bot'
15
15
 
16
16
  RuboCop::RakeTask.new(:rubocop) do |t|
17
17
  config_path = File.expand_path(File.join('.rubocop.yml'), __dir__)
18
- t.options = ['--config', config_path]
19
- t.requires << 'rubocop-performance'
20
- t.requires << 'rubocop-rails'
21
- t.requires << 'rubocop-rspec'
22
- t.requires << 'rubocop-rspec_rails'
23
- t.requires << 'rubocop-rake'
24
- t.requires << 'rubocop-capybara'
25
- t.requires << 'rubocop-factory_bot'
18
+ t.options = [
19
+ '--config', config_path,
20
+ '--plugin', 'rubocop-performance',
21
+ '--plugin', 'rubocop-rails',
22
+ '--plugin', 'rubocop-rspec',
23
+ '--plugin', 'rubocop-rspec_rails',
24
+ '--plugin', 'rubocop-rake',
25
+ '--plugin', 'rubocop-capybara',
26
+ '--plugin', 'rubocop-factory_bot'
27
+ ]
26
28
  end
27
29
 
28
30
  ARMITAGE_RUBOCOP_PATH = Pathname.new(__FILE__).join('../.rubocop.yml')
@@ -6,7 +6,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
6
  Gem::Specification.new do |spec|
7
7
  spec.required_ruby_version = '>= 3.3'
8
8
 
9
- spec.version = '1.75.7'
9
+ spec.version = '1.75.7.2'
10
10
  spec.name = 'armitage-rubocop'
11
11
  spec.license = 'MIT'
12
12
  spec.authors = ['Rustam Ibragimov']
data/lib/common/lint.yml CHANGED
@@ -390,7 +390,7 @@ Lint/ScriptPermission:
390
390
  Lint/SendWithMixinArgument:
391
391
  Enabled: true
392
392
 
393
- Lint/SharedMutableDefault
393
+ Lint/SharedMutableDefault:
394
394
  Enabled: true
395
395
 
396
396
  Lint/ShadowedArgument:
@@ -1,4 +1,4 @@
1
- require: rubocop-performance
1
+ plugins: rubocop-performance
2
2
 
3
3
  inherit_from:
4
4
  - ./common/bundler.yml
@@ -1,4 +1,4 @@
1
- require: rubocop-rails
1
+ plugins: rubocop-rails
2
2
 
3
3
  inherit_from:
4
4
  - ./rubocop.general.yml
data/lib/rubocop.rake.yml CHANGED
@@ -1,4 +1,4 @@
1
- require: rubocop-rake
1
+ plugins: rubocop-rake
2
2
 
3
3
  inherit_from:
4
4
  - ./common/rake.yml
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rspec
3
3
  - rubocop-rspec_rails
4
4
  - rubocop-capybara
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: armitage-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.75.7
4
+ version: 1.75.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rustam Ibragimov