rubocop-codetakt 0.6.0 → 0.7.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 +8 -0
- data/config/rspec.yml +13 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 301ee654e0bb83c7a660a3388b3e78fa19843f54
|
4
|
+
data.tar.gz: 4479f91697eb496a1716b8cc40236b04883c0ab4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e6a06c2240935c732ce9221932ddd6a2d74e4d60399016be46f53b1f91720c20976c8d5f8ad5a73f2103c4f51fddfa7e7cad612133ec15799b202b8152250a3
|
7
|
+
data.tar.gz: 135c21fc242277c3f9bc4d895c08490aaeffa06020a600dd1dbb176b91db8b6a9b08e72b220d63ebafa80692be1ce5be61eddb1d7d584b3e1bc1752c38b1a170
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# rubocop-codetakt
|
2
2
|
|
3
|
+
## v0.7.0 (2017-07-11)
|
4
|
+
|
5
|
+
[full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.6.0...v0.7.0)
|
6
|
+
|
7
|
+
* Loosen RSpec/NestedGroups to Max: 4.
|
8
|
+
* Backport "Disable RSpec/EmptyLineAfterFinalLet cop"
|
9
|
+
* From: https://github.com/onk/onkcop/pull/30
|
10
|
+
|
3
11
|
## v0.6.0 (2017-06-14)
|
4
12
|
|
5
13
|
[full changelog](https://github.com/codetakt/rubocop-codetakt/compare/v0.5.0...v0.6.0)
|
data/config/rspec.yml
CHANGED
@@ -5,3 +5,16 @@ inherit_gem:
|
|
5
5
|
RSpec/DescribedClass:
|
6
6
|
Exclude:
|
7
7
|
- "spec/requests/*"
|
8
|
+
|
9
|
+
# Accepts more deeper nests than default(3).
|
10
|
+
# describe 'Class'
|
11
|
+
# describe 'method'
|
12
|
+
# context 'larger scope (behavior)'
|
13
|
+
# context 'smaller scope (parameter)'
|
14
|
+
RSpec/NestedGroups:
|
15
|
+
Max: 4
|
16
|
+
|
17
|
+
# TODO: Remove after below PR is released.
|
18
|
+
# https://github.com/onk/onkcop/pull/30
|
19
|
+
RSpec/EmptyLineAfterFinalLet:
|
20
|
+
Enabled: false
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-codetakt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- codeTakt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: onkcop
|