fablicop 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -0
- data/config/.base_rubocop.yml +10 -3
- data/lib/fablicop/version.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: c18a179d1a9561baecc377d75c37c2411bbf3e62c574c8d34550745f467ae24e
|
4
|
+
data.tar.gz: 70209ca3b77e0ee5007a30361538f7387ae5b07fa14cb42f6c7939123975e47c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4371dcf93f67af17574377009d5c0f0aedaa3edcefa24511605fd5866494f08fc7b5fa09f68e130972b3956dea9b4638a95c672d443f77a887dbd921baf59b35
|
7
|
+
data.tar.gz: 5f65be5e687ec38f54887676608344c0d44975a7d09b3be34a5ad636f3b011a3a087b0a8776b3bf56cbbd04ccaccca389627bb8e24041ded9978e720d52f17dc
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
|
5
5
|
[Full Changelog](https://github.com/Fablic/fablicop/compare/v1.2.1...HEAD)
|
6
6
|
|
7
|
+
- Disable RSpec/DescribedClass [\#75](https://github.com/Fablic/fablicop/pull/75) ([yykamei](https://github.com/yykamei))
|
8
|
+
|
7
9
|
## [v1.2.1](https://github.com/Fablic/fablicop/tree/v1.2.1) (2022-04-15)
|
8
10
|
|
9
11
|
[Full Changelog](https://github.com/Fablic/fablicop/compare/v1.2.0...v1.2.1)
|
data/config/.base_rubocop.yml
CHANGED
@@ -96,10 +96,9 @@ Style/ClassAndModuleChildren:
|
|
96
96
|
- "test/**/*.rb"
|
97
97
|
- "spec/**/*.rb"
|
98
98
|
|
99
|
-
#
|
99
|
+
# Sometimes, 1000 is better than 1_000. Especially, it's useful to run grep(1) for searching `1000`.
|
100
100
|
Style/NumericLiterals:
|
101
|
-
|
102
|
-
- "db/fixtures/*.rb"
|
101
|
+
Enabled: false
|
103
102
|
|
104
103
|
# We don't care which we use: #yield_self or #then
|
105
104
|
Style/ObjectThen:
|
@@ -109,6 +108,10 @@ Style/ObjectThen:
|
|
109
108
|
Style/FetchEnvVar:
|
110
109
|
Enabled: false
|
111
110
|
|
111
|
+
# We don't care which style we should use.
|
112
|
+
Style/IfUnlessModifier:
|
113
|
+
Enabled: false
|
114
|
+
|
112
115
|
##################### Layout ##################################
|
113
116
|
# We sometimes want to put multiple spaces before arguments.
|
114
117
|
Layout/SpaceBeforeFirstArg:
|
@@ -247,3 +250,7 @@ RSpec/NamedSubject:
|
|
247
250
|
# because response validation in `request spec` is expected to result in large rows
|
248
251
|
RSpec/ExampleLength:
|
249
252
|
Enabled: false
|
253
|
+
|
254
|
+
# We don't care about whether using `described_class` or not.
|
255
|
+
RSpec/DescribedClass:
|
256
|
+
Enabled: false
|
data/lib/fablicop/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fablicop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tommy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-04-
|
13
|
+
date: 2022-04-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rubocop
|