cobalt-rubocop 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/config/rspec.yml +6 -0
- data/lib/rubocop/cobalt/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: fd065596ae4e92888e92dabb5f30c1ef58420633090f455e1b8243ca29a29a9e
|
4
|
+
data.tar.gz: 0d73e78f813543da948d3da9cea85f892f8c80e02866a69ae3f133ac3a3c422b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5f9fc4099f495a2439da30053e563eb99d18e6cd90d3b5c48cf079ee9dde5bb54b7462765ca4fb1637cb89085dc63a09723a7c418c3a2c77ac6f618696bf1e7
|
7
|
+
data.tar.gz: 2e85d5f9491e17043824a7ec9318da665cc37b4f4bd89466bf7bcec653d78e878871d3e8fb6fed5da404d87cb00882d23529d0b8da809c070423731f841fd689
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,17 @@
|
|
2
2
|
|
3
3
|
## main (unreleased)
|
4
4
|
|
5
|
+
## 1.0.1 (2023-07-13)
|
6
|
+
|
7
|
+
* Disable `RSpec/ScatteredSetup` for specs inside `/api`, since it
|
8
|
+
incorrectly thinks that separate `before` blocks can be put together for
|
9
|
+
RSwag specs
|
10
|
+
|
11
|
+
* Maintenance:
|
12
|
+
* Add CI status checks
|
13
|
+
* Add dependabot
|
14
|
+
* Add required CI checks for IaaC setup
|
15
|
+
|
5
16
|
## 1.0.0 (2023-06-09)
|
6
17
|
|
7
18
|
* Bump required ruby version to 3.2.x
|
data/config/rspec.yml
CHANGED
@@ -26,6 +26,12 @@ RSpec/NamedSubject:
|
|
26
26
|
RSpec/NestedGroups:
|
27
27
|
Max: 5
|
28
28
|
|
29
|
+
# This cop does not correctly detect that RSwag creates
|
30
|
+
# extra contexts, reporting false positives for those tests
|
31
|
+
RSpec/ScatteredSetup:
|
32
|
+
Exclude:
|
33
|
+
- '{components/*/,}spec/api/**/*'
|
34
|
+
|
29
35
|
RSpec/VariableName:
|
30
36
|
AllowedPatterns:
|
31
37
|
- ^Authorization
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cobalt-rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cobalt Engineering
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
119
|
- !ruby/object:Gem::Version
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
|
-
rubygems_version: 3.4.
|
122
|
+
rubygems_version: 3.4.1
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: Cobalt RuboCop
|