rubocop-bitcrowd 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b0d564235084a7fde4c55f8af20c0a6cf6eec29a2801b219d44dc60decbc220
4
- data.tar.gz: e64f7ea8be218c6da19eec860bafe82aaf627b43d6a25f23bb246d2c5e19b0b8
3
+ metadata.gz: d2354c332d5519a27fdd724145162cd9bad8af8a9ed19fa6425fd91c7070157b
4
+ data.tar.gz: 21845e2f5bfd885a93fbfcca5911bb6a88af7c1ca571154107b6fcc08bee3c9b
5
5
  SHA512:
6
- metadata.gz: 384c691163b3732a63b7bc761017121aa0a3676e52462b2d7fe645f47905899cb0f8e6746edf87bd09dcd5def7fc7a9174ba4e5157253c93a2eae63403d57c4f
7
- data.tar.gz: 259b37f81b7253c3a85eea330017f7504acda2383eaf98e3ba4bb03c2a8b402a08ce5d5ab993fa5cba158761ea1b85d6354e302e307625e9488c0d54fb7b3169
6
+ metadata.gz: cf35c02d70f5b844b294c9cca4179ff1fb196e12425409b105a511242b8a9ca8da7a16fad8809c95c545ae8bd71b8d57e30c216a920ff4970837c2ed48ba4331
7
+ data.tar.gz: dec701c2bb3365b3195eab951da4b1b7203ae1e34387b8c789f10dc3558494920cbe225d18b00d76d53905d92b2b40a9a37c788308981271e4bf1ce2e4c7fdf8
data/.rubocop.yml CHANGED
@@ -98,7 +98,7 @@ Metrics/MethodLength:
98
98
 
99
99
  Metrics/BlockLength:
100
100
  Enabled: true
101
- ExcludedMethods: ['describe', 'context', 'define', 'factory']
101
+ ExcludedMethods: ['describe', 'context', 'define', 'factory', 'namespace']
102
102
 
103
103
  Metrics/AbcSize:
104
104
  Enabled: true
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.0.0...HEAD
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.0.0
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
-
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'rubocop-bitcrowd'
3
- spec.version = '2.0.0'
3
+ spec.version = '2.1.0'
4
4
  spec.authors = ['bitcrowd']
5
5
  spec.email = ['info@bitcrowd.net']
6
6
 
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.0.0
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-02-07 00:00:00.000000000 Z
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
- rubyforge_project:
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.