rubocop-rspec 2.29.1 → 2.29.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 +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/rubocop/cop/rspec/repeated_subject_call.rb +1 -0
- data/lib/rubocop/rspec/node.rb +1 -1
- data/lib/rubocop/rspec/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f4865ebd50bfe7df9833f2c5321a46dcac8631087062605b7e077e6b633099a
|
4
|
+
data.tar.gz: 4520e7bdaae0270de34922c53f08d23679b9ac66a89bad29a52485bcdc49432d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 202e33ab3927087a3e59917c1a73edc28f13054e668bbefeb5451799f373304b0a5d703e3a0564cf72df2f8afe86d0be1b5a1ffc06bfe2f145c4b2645474a653
|
7
|
+
data.tar.gz: ad0cb220b35590ffc7911e149d9754af5185b83fe597a2212a4dca2927617f4269af80f19cfeabd147e2b06181c9ce37a44998822d9a3f2fd7c27395fca18b0d
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
## Master (Unreleased)
|
4
4
|
|
5
|
+
## 2.29.2 (2024-05-02)
|
6
|
+
|
7
|
+
- Fix beginless and endless range bug for RepeatedIncludeExample cop. ([@hasghari])
|
8
|
+
- Fix a false positive for `RSpec/RepeatedSubjectCall` when subject is used as argument to function call. ([@K-S-A])
|
9
|
+
|
5
10
|
## 2.29.1 (2024-04-05)
|
6
11
|
|
7
12
|
- Fix an error in the default configuration. ([@ydah])
|
@@ -895,6 +900,7 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
|
|
895
900
|
[@gsamokovarov]: https://github.com/gsamokovarov
|
896
901
|
[@harry-graham]: https://github.com/harry-graham
|
897
902
|
[@harrylewis]: https://github.com/harrylewis
|
903
|
+
[@hasghari]: https://github.com/hasghari
|
898
904
|
[@hosamaly]: https://github.com/hosamaly
|
899
905
|
[@ignaciovillaverde]: https://github.com/ignaciovillaverde
|
900
906
|
[@jaredbeck]: https://github.com/jaredbeck
|
@@ -907,6 +913,7 @@ Compatibility release so users can upgrade RuboCop to 0.51.0. No new features.
|
|
907
913
|
[@jojos003]: https://github.com/jojos003
|
908
914
|
[@jonatas]: https://github.com/jonatas
|
909
915
|
[@jtannas]: https://github.com/jtannas
|
916
|
+
[@k-s-a]: https://github.com/K-S-A
|
910
917
|
[@kellysutton]: https://github.com/kellysutton
|
911
918
|
[@koic]: https://github.com/koic
|
912
919
|
[@kuahyeow]: https://github.com/kuahyeow
|
data/lib/rubocop/rspec/node.rb
CHANGED
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.29.
|
4
|
+
version: 2.29.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Backus
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-05-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rubocop
|
@@ -269,7 +269,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
269
269
|
- !ruby/object:Gem::Version
|
270
270
|
version: '0'
|
271
271
|
requirements: []
|
272
|
-
rubygems_version: 3.5.
|
272
|
+
rubygems_version: 3.5.9
|
273
273
|
signing_key:
|
274
274
|
specification_version: 4
|
275
275
|
summary: Code style checking for RSpec files
|