rubocop-lts-rspec 1.0.1 → 1.0.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: 88ac0de8cf1924aea04d4b6ba3b2ac5d909a432e7f945ffb2a10a78245e44b45
4
- data.tar.gz: 1d0c6aabd75254ecb1cb04bd8239cecfd88be4f1c825877081b70acc60b63cf3
3
+ metadata.gz: b724508dfb15a0b7fff979d7d24bdabb7fff1563cb278b954c26f852408cc2d2
4
+ data.tar.gz: 89d1c95eb6353eebd0ced3824ab68e2691dfaa51bfa61436aae01b23981d8a10
5
5
  SHA512:
6
- metadata.gz: 9f6e021408cc06774ab971f3c8ae159e42a6e590b9723a62d8de1396854fd8b8a3ae25a6af07d7e0281b1d7d664d5a1695bd7e6cc50f3ef812eb6aec8ce08106
7
- data.tar.gz: c3631dda83264fe37582c7f3721dcdd88f880ef85a0b9b95817e57f8b64f4111003d8b66776ec56a75c5a9580d4252ddab564dbbe1c6ffd51b77672a5bb4ff06
6
+ metadata.gz: 4d36fae4c87da06d760c1f0c45e7bf6d142dca4141658f9bf686d41ca03ff968914b9e828143b7d8c97fa0392218006f133d473a1fa69a6876750b0538ff1ae3
7
+ data.tar.gz: b4dfe022808d6f82ad405419b29bbe7a77996713cfa8b05e92ee35b1f4575ffce01141cd5300bb6fd1d79cccd596c7d98bdd07ecf8f44c5ae74f691d0cd46c31
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
  ## [Unreleased]
8
8
  ### Added
9
9
  ### Changed
10
+ - Load RSpec-family RuboCop extensions through RuboCop's plugin API.
10
11
  ### Fixed
11
12
  ### Removed
12
13
  - rubocop-shopify as a transitive dependency (via rubocop-lts)
data/config/base.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  # Shared RSpec integrations for the rubocop-lts family.
2
- require:
2
+ plugins:
3
3
  - rubocop-factory_bot
4
4
 
5
5
  # Configurations of specific RuboCop rules go here
data/config/ruby-1.8.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-1.9.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.0.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.1.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.2.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.3.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.4.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.5.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.6.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-2.7.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-3.0.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-3.1.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-3.2.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-3.3.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
data/config/ruby-3.4.yml CHANGED
@@ -5,11 +5,13 @@ inherit_mode:
5
5
  - Exclude
6
6
  - Include
7
7
 
8
+ plugins:
9
+ - rubocop-rspec-extra
10
+ - rubocop-rspec
11
+
8
12
  require:
9
13
  - rubocop-lts-rspec
10
- - rubocop-rspec-extra
11
14
  - rubocop-env
12
- - rubocop-rspec
13
15
 
14
16
  inherit_gem:
15
17
  rubocop-env: config/default.yml
@@ -7,7 +7,7 @@ module Rubocop
7
7
  module Version
8
8
  # Bump VERSION manually for each new release!
9
9
  # See: CONTRIBUTING.md
10
- VERSION = "1.0.1"
10
+ VERSION = "1.0.2"
11
11
  end
12
12
  end
13
13
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-lts-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -446,10 +446,10 @@ licenses:
446
446
  - MIT
447
447
  metadata:
448
448
  homepage_uri: https://rubocop-lts.gitlab.io/
449
- source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts-rspec/-/tree/v1.0.1
450
- changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts-rspec/-/blob/v1.0.1/CHANGELOG.md
449
+ source_code_uri: https://gitlab.com/rubocop-lts/rubocop-lts-rspec/-/tree/v1.0.2
450
+ changelog_uri: https://gitlab.com/rubocop-lts/rubocop-lts-rspec/-/blob/v1.0.2/CHANGELOG.md
451
451
  bug_tracker_uri: https://gitlab.com/rubocop-lts/rubocop-lts-rspec/-/issues
452
- documentation_uri: https://www.rubydoc.info/gems/rubocop-lts-rspec/1.0.1
452
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-lts-rspec/1.0.2
453
453
  wiki_uri: https://gitlab.com/rubocop-lts/rubocop-lts-rspec/-/wikis/home
454
454
  funding_uri: https://liberapay.com/pboling
455
455
  rubygems_mfa_required: 'true'
metadata.gz.sig CHANGED
Binary file