aroundhome_cops 5.0.0 → 5.0.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 +3 -0
- data/default.yml +6 -0
- data/lib/aroundhome_cops.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bfa5be96619d3d6451b2527a11ba2d8b24c3c27d49ee6401122ff5c3e8375a83
|
|
4
|
+
data.tar.gz: 7cd6dc77595818f58716e0133b7e3745c863afcc23cc239fcd62818d278c7ebb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e813351d7e6fb2e5685f937c3531142d86624b7c8d192ba9b66f30e6e649c09d0fec2b622f879a6f800ce59aaf912fc52002c4964bc690e8fc4be2937ed2589
|
|
7
|
+
data.tar.gz: 61acfe40d2081714749144715eb177d40bd57ac37300ab88b36d908d5e773c2506d8deca3d0a1f464e42d5e07de373152b68c230bafdac2f02b345347ac5b8c8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## Version 5.0.1
|
|
2
|
+
* [do not expect syntax](https://www.rubydoc.info/gems/rubocop-rspec/1.10.0/RuboCop/Cop/RSpec/MessageSpies) of [message spies](https://relishapp.com/rspec/rspec-mocks/docs/basics/spies) by default
|
|
3
|
+
|
|
1
4
|
## Version 5.0.0
|
|
2
5
|
* Opt into all Rubocop offenses up until 1.35 & rspec 2.12
|
|
3
6
|
* Update minimum rubocop to 1.35
|
data/default.yml
CHANGED
|
@@ -174,6 +174,11 @@ RSpec/NestedGroups:
|
|
|
174
174
|
RSpec/PredicateMatcher:
|
|
175
175
|
Enabled: false
|
|
176
176
|
|
|
177
|
+
# Our codebase was consistent across the company before we started to introduce rubocop-rspec
|
|
178
|
+
# lots of our repositories are not using message spies currently
|
|
179
|
+
RSpec/MessageSpies:
|
|
180
|
+
EnforcedStyle: receive
|
|
181
|
+
|
|
177
182
|
# While in general 2FA is a good idea, adding 2FA to CI/CD is a difficulty.
|
|
178
183
|
Gemspec/RequireMFA: # new in 1.23
|
|
179
184
|
Enabled: false
|
|
@@ -342,3 +347,4 @@ RSpec/FactoryBot/SyntaxMethods: # new in 2.7
|
|
|
342
347
|
Enabled: true
|
|
343
348
|
RSpec/Rails/HaveHttpStatus: # new in 2.12
|
|
344
349
|
Enabled: true
|
|
350
|
+
|
data/lib/aroundhome_cops.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aroundhome_cops
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Sandbrink
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-11-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|