house_style 3.1.0 → 3.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0c947968f6d0fc33d002800803ef43964505d6612eb4ae0b5b77b22f69930c8e
4
- data.tar.gz: 0f2ffa40cba2c8c601918a1293860df3b4057193a91660c7bf53adffd15f1b02
3
+ metadata.gz: a319d98c5df9dfd06975dec825441a25db00ea33359ff4fcab7f7ac90bbb4b76
4
+ data.tar.gz: 7774da37ee267c978ce3b086522fbca0b4d2ca32ac9e1698997b3742b8e1aa78
5
5
  SHA512:
6
- metadata.gz: e630442c72620678ede86e122641eb7bf77a7d68d5bac6af010b3715b37570414350efb177c22603b9e8ceff70f2de05d2d9019b5bd88820f069509dfdc3e7c8
7
- data.tar.gz: d3929cb712e7fcdf91937c0281bfbd3dc1eb54ce0730983a01c48ee96b1797a31102b628a5d0dc9e96b903ea8383dcba8b70041ded132f04a0d476eeccffe109
6
+ metadata.gz: bddd4f3a3858406464fa265b6778cc0852f24bad8e835a58b2e78545d1e26e3c4af150a96d43bdabafc4e0df875ced44f9c7c6fb1d4ec6f7e9f9936140d0f9df
7
+ data.tar.gz: 951296f018395a49330cec548f69677900349133a4545c2a26e95cce673886d1ccc69e96ada1f275424c950db4f70f75aef2ca6c0f5013d6b11433d945e4216d
data/CHANGELOG.md CHANGED
@@ -1,11 +1,19 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 3.2.1
4
+ ### Changes
5
+ - Remove the `RSpec/` prefix from the Capybara and FactoryBot configurations. These namespaces changes should be hidden until `rubocop-rspec` v3.0 according to https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md but we are seeing warnings now so we are moving the new namespaces immediately.
6
+
7
+ ## 3.2.0
8
+ ### Changes
9
+ - Remove RSpec/ExpectActual: Whenever we do routing, there's always false positives, e.g. `expect(post: '/email_updates/123').to route_to('email_updates#create', id: '123')`.
10
+
3
11
  ## 3.1.0
4
12
  ### Changes
5
13
  - Do not suggest extensions
6
14
  - Remove Rails/FindById (it isn't safe if you're using MongoId in a project depending on your configuration)
7
15
  - Use `braces_for_chaining` for `Style/BlockDelimiters`. As a team, we've agreed to use this more general extended approach among the community. It also simplifies configuration for specs, fixtures, migrations... etc.
8
- ## Bug fixes
16
+ ### Bug fixes
9
17
  - In RSpec template, do not inherit the root configuration, as the rspec .rubocop.yml file already inherits the ruby configuration itself.
10
18
 
11
19
  ## 3.0.0
data/house_style.gemspec CHANGED
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
 
4
4
  Gem::Specification.new do |spec|
5
5
  spec.name = 'house_style'
6
- spec.version = '3.1.0'
6
+ spec.version = '3.2.1'
7
7
  spec.authors = ['Altmetric', 'Scott Matthewman']
8
8
  spec.email = ['engineering@altmetric.com', 'scott.matthewman@gmail.com']
9
9
 
data/rspec/rubocop.yml CHANGED
@@ -10,14 +10,14 @@ Lint/AmbiguousBlockAssociation:
10
10
  Exclude:
11
11
  - spec/**/*
12
12
 
13
- RSpec/Capybara/CurrentPathExpectation:
13
+ Capybara/CurrentPathExpectation:
14
14
  Enabled: true
15
15
 
16
- RSpec/FactoryBot/AttributeDefinedStatically:
16
+ FactoryBot/AttributeDefinedStatically:
17
17
  Enabled: true
18
- RSpec/FactoryBot/CreateList:
18
+ FactoryBot/CreateList:
19
19
  Enabled: true
20
- RSpec/FactoryBot/FactoryClassName:
20
+ FactoryBot/FactoryClassName:
21
21
  Enabled: true
22
22
 
23
23
  RSpec/BeEql:
@@ -36,8 +36,6 @@ RSpec/EmptyLineAfterHook:
36
36
  Enabled: true
37
37
  RSpec/EmptyLineAfterSubject:
38
38
  Enabled: true
39
- RSpec/ExpectActual:
40
- Enabled: true
41
39
  RSpec/ExpectInHook:
42
40
  Enabled: true
43
41
  RSpec/ExpectOutput:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: house_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Altmetric
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-08-16 00:00:00.000000000 Z
12
+ date: 2023-05-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rubocop