rubocop-bitcrowd 2.0.0 → 2.1.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/.rubocop.yml +1 -1
- data/CHANGELOG.md +10 -4
- data/rubocop-bitcrowd.gemspec +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2354c332d5519a27fdd724145162cd9bad8af8a9ed19fa6425fd91c7070157b
|
|
4
|
+
data.tar.gz: 21845e2f5bfd885a93fbfcca5911bb6a88af7c1ca571154107b6fcc08bee3c9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf35c02d70f5b844b294c9cca4179ff1fb196e12425409b105a511242b8a9ca8da7a16fad8809c95c545ae8bd71b8d57e30c216a920ff4970837c2ed48ba4331
|
|
7
|
+
data.tar.gz: dec701c2bb3365b3195eab951da4b1b7203ae1e34387b8c789f10dc3558494920cbe225d18b00d76d53905d92b2b40a9a37c788308981271e4bf1ce2e4c7fdf8
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ Presented in reverse chronological order.
|
|
|
4
4
|
|
|
5
5
|
## master
|
|
6
6
|
|
|
7
|
-
https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.
|
|
7
|
+
https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.1.0...HEAD
|
|
8
8
|
|
|
9
9
|
*Put high-level summary here before releasing a new version*
|
|
10
10
|
|
|
@@ -24,7 +24,14 @@ https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.0.0...HEAD
|
|
|
24
24
|
|
|
25
25
|
* *Put fixes here (in a brief bullet point)*
|
|
26
26
|
|
|
27
|
-
## 2.
|
|
27
|
+
## `2.1.0` (2019-11-29)
|
|
28
|
+
|
|
29
|
+
https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.0.0...v2.1.0
|
|
30
|
+
|
|
31
|
+
### New features:
|
|
32
|
+
* Exclude `namespace` method from `Metrics/BlockLength` to support longer namespace definitions in rake tasks.
|
|
33
|
+
|
|
34
|
+
## `2.0.0` (2019-02-06)
|
|
28
35
|
|
|
29
36
|
https://github.com/bitcrowd/rubocop-bitcrowd/compare/v1.3.0...v2.0.0
|
|
30
37
|
|
|
@@ -56,7 +63,7 @@ inherit_mode:
|
|
|
56
63
|
### Fixes:
|
|
57
64
|
|
|
58
65
|
* Also exclude the `tmp`, `log` and `storage` directories from being inspected.
|
|
59
|
-
Working on a Rails application, especially the `tmp` directory fills up over time and slows down linting the project enormously. Same goes for the `storage` directory: here rubocop also has to dig through deeply nested folder structures.
|
|
66
|
+
Working on a Rails application, especially the `tmp` directory fills up over time and slows down linting the project enormously. Same goes for the `storage` directory: here rubocop also has to dig through deeply nested folder structures.
|
|
60
67
|
Note: rubocop's "default" configuration also ignores the `tmp` directory.
|
|
61
68
|
|
|
62
69
|
## `1.3.0` (2018-10-22)
|
|
@@ -121,4 +128,3 @@ https://github.com/bitcrowd/rubocop-bitcrowd/compare/v1.1.0...v1.1.1
|
|
|
121
128
|
https://github.com/bitcrowd/rubocop-bitcrowd/compare/695fb551bcd1e17a12f80e34c9bbcb842cee35ea...v1.1.1
|
|
122
129
|
|
|
123
130
|
* First official release
|
|
124
|
-
|
data/rubocop-bitcrowd.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop-bitcrowd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bitcrowd
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -106,8 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
106
106
|
- !ruby/object:Gem::Version
|
|
107
107
|
version: '0'
|
|
108
108
|
requirements: []
|
|
109
|
-
|
|
110
|
-
rubygems_version: 2.7.6
|
|
109
|
+
rubygems_version: 3.0.6
|
|
111
110
|
signing_key:
|
|
112
111
|
specification_version: 4
|
|
113
112
|
summary: The bitcrowd rubocop.yml as a gem.
|