rubocop-rspec 2.13.0 → 2.13.1
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/config/obsoletion.yml +14 -0
- data/lib/rubocop/rspec/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: beb4503a6d6d420e50748e9fd6c679a2968888d783293c33da2dbaf6d7a9fc3f
|
|
4
|
+
data.tar.gz: 4dff5e6a61c80d1acc943169efdb65a24fa5dd05654bf758c4f6b291aedad63c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7937a46e61db588b4b9354ec362af79585526e7d95a7bc735435ace552b44e354f32e8f10310460059b71870a1caf8617414edd663cf8b50e9f13405977123a4
|
|
7
|
+
data.tar.gz: 7c4a57c7635e827717d10f253233837e7b9c11c5769fd4d9aab7c7c110d808f83c6099663684237c499432f606891b7a8aa9142c302e09ad5e73391b70f29a8e
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
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.
|
|
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
|