rubocop-bitcrowd 2.1.2 → 2.1.3

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: cea0e18a80bec69732b4cd197036a35bec49c58ee95af32b8102677d962702a8
4
- data.tar.gz: 886617aabb1bd798344089ac6f8eb05a2ef97df86dbb736d9915ab3c97fa16ef
3
+ metadata.gz: 62210b3b31efa0414797d945953b00b6be165fd7665e95cc7d3426335204887f
4
+ data.tar.gz: 4124398220ec85f6acd15ab476caf309f545052350c27645811b26bc701f413e
5
5
  SHA512:
6
- metadata.gz: e319150adb73d9e41fd1377fb069cc1167552cadd259733aabb54c628242ae6e3d05ca85f07915a1576edf0d1656e5e49d4e3054aea264b63e5a9e2745bd84fb
7
- data.tar.gz: 5a011e867f92bd26af66febf419199da15dd14ffc6b0931a7cda4d1d355c2ddeec08995f3d213ca1c273cc70dd62f9a36104224c9e12f29b8666007b5658def0
6
+ metadata.gz: 60740aa1c0d665dad8310bd3918c70919043833f67c03c4db3735bda9c92ebce940c745d416260f3817a5ed40d035517c0e734dae5d2d88f902d98d92d95b7b4
7
+ data.tar.gz: 56522c53c002e97eb4815228f1b3c7ec626a3e2b9d8adfc6444227ee0f1c4ad518deb4874ccc3300d19f32ac55be16b6a8192b43cab9684410397cc7bb0477da
data/.rubocop.yml CHANGED
@@ -16,10 +16,6 @@ Style/Documentation:
16
16
  Lint/UselessAccessModifier:
17
17
  Enabled: true
18
18
 
19
- Metrics/LineLength:
20
- Enabled: true
21
- Max: 120
22
-
23
19
  Rails:
24
20
  Enabled: true
25
21
 
@@ -103,6 +99,10 @@ Metrics/BlockLength:
103
99
  Metrics/AbcSize:
104
100
  Enabled: true
105
101
 
102
+ Layout/LineLength:
103
+ Enabled: true
104
+ Max: 120
105
+
106
106
  Layout/SpaceInsideArrayLiteralBrackets:
107
107
  Enabled: true
108
108
  AutoCorrect: true
data/CHANGELOG.md CHANGED
@@ -1,10 +1,10 @@
1
- # Rubocop-Bitcrowd Changelog
1
+ # Changelog rubocop-bitcrowd
2
2
 
3
3
  Presented in reverse chronological order.
4
4
 
5
5
  ## master
6
6
 
7
- https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.1.0...HEAD
7
+ https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.1.3...HEAD
8
8
 
9
9
  *Put high-level summary here before releasing a new version*
10
10
 
@@ -24,6 +24,17 @@ https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.1.0...HEAD
24
24
 
25
25
  * *Put fixes here (in a brief bullet point)*
26
26
 
27
+ ## `2.1.3` (2020-03-26)
28
+
29
+ https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.1.3...HEAD
30
+
31
+ This releases silences some deprecation warnings and locks down the minimal `rubocop` version `rubocop-bitcrowd` depends on.
32
+
33
+ ### Fixes:
34
+
35
+ * [#31](https://github.com/bitcrowd/rubocop-bitcrowd/pull/31) Fix deprecation warning by moving `LineLength` cop from `Metrics` to `Layout` and lock the Rubocop version to `>= 0.78.0` and `< 0.79`.
36
+ * [#31](https://github.com/bitcrowd/rubocop-bitcrowd/pull/31) Lock down the minimal `rubocop` version we depend on. Similar to [rubocop-rspec](https://github.com/rubocop-hq/rubocop-rspec) we're only setting the lower boundary now.
37
+
27
38
  ## `2.1.2` (2019-12-17)
28
39
 
29
40
  https://github.com/bitcrowd/rubocop-bitcrowd/compare/v2.1.1...v2.1.2
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'rubocop-bitcrowd'
3
- spec.version = '2.1.2'
3
+ spec.version = '2.1.3'
4
4
  spec.authors = ['bitcrowd']
5
5
  spec.email = ['info@bitcrowd.net']
6
6
 
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
9
9
  'settings we use at bitcrowd into your project'
10
10
  spec.homepage = 'https://github.com/bitcrowd/rubocop-bitcrowd'
11
11
  spec.license = 'MIT'
12
+
12
13
  spec.post_install_message = <<~HEREDOC
13
14
 
14
15
  This version of rubocop-bitcrowd no longer overrides RuboCop's AllCops:Exclude list.
@@ -30,11 +31,15 @@ Gem::Specification.new do |spec|
30
31
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
31
32
  f.match(%r{^(test|spec|features)/})
32
33
  end
33
- spec.bindir = 'exe'
34
- spec.executables = 'rubocop-autofix'
34
+ spec.bindir = 'exe'
35
+ spec.executables = 'rubocop-autofix'
36
+
37
+ spec.metadata = {
38
+ 'changelog_uri' => 'https://github.com/bitcrowd/rubocop-bitcrowd/blob/master/CHANGELOG.md'
39
+ }
35
40
 
36
- spec.add_runtime_dependency 'rubocop', '~> 0.57'
41
+ spec.add_runtime_dependency 'rubocop', '>= 0.78.0'
37
42
 
38
43
  spec.add_development_dependency 'bundler', '~> 1.14'
39
- spec.add_development_dependency 'rake', '~> 10.0'
44
+ spec.add_development_dependency 'rake', '~> 12.3.3'
40
45
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-bitcrowd
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.2
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - bitcrowd
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-12-17 00:00:00.000000000 Z
11
+ date: 2020-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.57'
19
+ version: 0.78.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0.57'
26
+ version: 0.78.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '10.0'
47
+ version: 12.3.3
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '10.0'
54
+ version: 12.3.3
55
55
  description: Use this as a quick start to get rubocop with the settings we use at
56
56
  bitcrowd into your project
57
57
  email:
@@ -75,7 +75,8 @@ files:
75
75
  homepage: https://github.com/bitcrowd/rubocop-bitcrowd
76
76
  licenses:
77
77
  - MIT
78
- metadata: {}
78
+ metadata:
79
+ changelog_uri: https://github.com/bitcrowd/rubocop-bitcrowd/blob/master/CHANGELOG.md
79
80
  post_install_message: |2+
80
81
 
81
82
  This version of rubocop-bitcrowd no longer overrides RuboCop's AllCops:Exclude list.
@@ -106,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
107
  - !ruby/object:Gem::Version
107
108
  version: '0'
108
109
  requirements: []
109
- rubygems_version: 3.0.6
110
+ rubygems_version: 3.0.3
110
111
  signing_key:
111
112
  specification_version: 4
112
113
  summary: The bitcrowd rubocop.yml as a gem.