house_style 3.1.0 → 3.2.0
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 +5 -1
- data/house_style.gemspec +1 -1
- data/rspec/rubocop.yml +0 -2
- 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: e9b11b2f05d4998e8d471de8e7d07ab5613a6a05851b0fede9c909966fff1f55
|
|
4
|
+
data.tar.gz: 29d12156114f85f935c7786f0d4756de686730720954454a2f03d79b108eb936
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1578c0c67dd3bec30ead54c5a591abd9fdb2c9865bca16568b5567eb2c4b3043b478c9814a59f0c7308a8bc44fba1d0ab93b2a5e00194ace794498299213646b
|
|
7
|
+
data.tar.gz: b72a6846b712eda57575b65feb2144ac8c1470b449627c9cb94a07fb3f31fb1a4583386dcbd3fe66484b4506f07d3e3a11bdf65ea66eb1fafab489d9c11cda04
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
### Changes
|
|
5
|
+
- 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')`.
|
|
6
|
+
|
|
3
7
|
## 3.1.0
|
|
4
8
|
### Changes
|
|
5
9
|
- Do not suggest extensions
|
|
6
10
|
- Remove Rails/FindById (it isn't safe if you're using MongoId in a project depending on your configuration)
|
|
7
11
|
- 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
|
-
|
|
12
|
+
### Bug fixes
|
|
9
13
|
- In RSpec template, do not inherit the root configuration, as the rspec .rubocop.yml file already inherits the ruby configuration itself.
|
|
10
14
|
|
|
11
15
|
## 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.
|
|
6
|
+
spec.version = '3.2.0'
|
|
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
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.
|
|
4
|
+
version: 3.2.0
|
|
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-
|
|
12
|
+
date: 2022-12-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rubocop
|