rubocop-rspec 2.13.0 → 2.13.1

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: 31d7e881e40be6a9b27f78f77789f1ecc5056bb073f5028a5c3dc0c6e1fe81ad
4
- data.tar.gz: 7ad05e5a9ecfa1230aabfa54c7e6f9d7649f428017c405a9ed68d4da95218dd2
3
+ metadata.gz: beb4503a6d6d420e50748e9fd6c679a2968888d783293c33da2dbaf6d7a9fc3f
4
+ data.tar.gz: 4dff5e6a61c80d1acc943169efdb65a24fa5dd05654bf758c4f6b291aedad63c
5
5
  SHA512:
6
- metadata.gz: dfa4fca8f641da881b6014b91f5df8678af96c60e937339a81a64efd0bd87859ddc5876f977a995ae52a844e88bd53d46d50e0b37fd933b37e18da830991f245
7
- data.tar.gz: f7779621a7c6fc6e33bf47b6823cfe7c4be08cc0f32ac02465cd4cbe35a1b8d4ed280a71c33f6fcfd7195a65191f68c9f9c13cdb0f8624a0a3e80be56af4dd50
6
+ metadata.gz: 7937a46e61db588b4b9354ec362af79585526e7d95a7bc735435ace552b44e354f32e8f10310460059b71870a1caf8617414edd663cf8b50e9f13405977123a4
7
+ data.tar.gz: 7c4a57c7635e827717d10f253233837e7b9c11c5769fd4d9aab7c7c110d808f83c6099663684237c499432f606891b7a8aa9142c302e09ad5e73391b70f29a8e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Master (Unreleased)
4
4
 
5
+ ## 2.13.1 (2022-09-12)
6
+
7
+ * Include config/obsoletion.yml in the gemspec. ([@hosamaly][])
8
+
5
9
  ## 2.13.0 (2022-09-12)
6
10
 
7
11
  * Fix `RSpec/FilePath` cop missing mismatched expanded namespace. ([@sl4vr][])
@@ -0,0 +1,14 @@
1
+ #
2
+ # Configuration of obsolete/deprecated cops used by `ConfigObsoletion`.
3
+ #
4
+ # See: https://docs.rubocop.org/rubocop/extensions.html#config-obsoletions
5
+ #
6
+
7
+ # Cop parameters that have been changed
8
+ # Can be treated as a warning instead of a failure with `severity: warning`
9
+ changed_parameters:
10
+ - cops:
11
+ - RSpec/VariableName
12
+ parameters: IgnoredPatterns
13
+ alternative: AllowedPatterns
14
+ severity: warning
@@ -4,7 +4,7 @@ module RuboCop
4
4
  module RSpec
5
5
  # Version information for the RSpec RuboCop plugin.
6
6
  module Version
7
- STRING = '2.13.0'
7
+ STRING = '2.13.1'
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.13.0
4
+ version: 2.13.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Backus
@@ -44,6 +44,7 @@ files:
44
44
  - MIT-LICENSE.md
45
45
  - README.md
46
46
  - config/default.yml
47
+ - config/obsoletion.yml
47
48
  - lib/rubocop-rspec.rb
48
49
  - lib/rubocop/cop/rspec/align_left_let_brace.rb
49
50
  - lib/rubocop/cop/rspec/align_right_let_brace.rb