bloom_rubocop 0.1.0 → 0.2.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: 9c6aa97d2ddf5796a3302214280b84252053d0e7c6dfc6f8551fcd99c3829a21
4
- data.tar.gz: 331187320a93fbfe725555e19eaf166a7a1754a7768d33e8a0fb70d425bb59d3
3
+ metadata.gz: fbca0013f769da53d026f170039d79dbc60500aec77d8c469e39eec4647d6108
4
+ data.tar.gz: '0584f5e7058f7b3c47f0bbd78a0943e99cf80e66c33e1d5e7c38424474af76c7'
5
5
  SHA512:
6
- metadata.gz: 7795165cf98fa5fb1b2fd4cda66056fbe5536a164e6f6b138323e476b3774b408b5e5ff7bbea545d295a60600e2a6d6c771fbd5433a8febdbc680f0cdeddee4a
7
- data.tar.gz: 4f1318c2ff49faec34b2790b0135eabd291ed9d143da2b084d1885c1634fea515a848d002c71e8de05b99132fd30195134185720367f3936b4fa4e3007c47222
6
+ metadata.gz: 45b0c5218ef5bdef5686db5a9c381df12d6761a31e7440590af1d9563173bee67275e92044008e4e6b4f8b9cdd8e0eb50e2e1f566da612cfa7fa3bc4c1a9137a
7
+ data.tar.gz: 22292cfa7d382943579423c1883b77ecd3e507a553a4f1a5f31b9018843a9977a0da76613412e09cc47441eb4605966d697c9e482773e1e70ab3eee9950db605
@@ -42,9 +42,9 @@ Style/LambdaCall:
42
42
  Enabled: false
43
43
 
44
44
  # Bloom: hashes/arrays look more readable if indented on the same as the hash literal
45
- Layout/IndentHash:
45
+ Layout/IndentFirstHashElement:
46
46
  EnforcedStyle: consistent
47
- Layout/IndentArray:
47
+ Layout/IndentFirstArrayElement:
48
48
  EnforcedStyle: consistent
49
49
 
50
50
  Lint/UnusedMethodArgument:
@@ -192,3 +192,24 @@ Naming/BinaryOperatorParameterName:
192
192
  # also they'll fail CI anyway
193
193
  Lint/Debugger:
194
194
  Enabled: false
195
+
196
+
197
+ # The following cops are added between 0.58.2 and 0.74.0.
198
+ # The configurations are default.
199
+ # If you want to use a cop by default, remove a configuration for the cop from here.
200
+ # If you want to disable a cop, change `Enabled` to false.
201
+
202
+ Bundler/GemComment:
203
+ Description: Add a comment describing each gem.
204
+ Enabled: false
205
+ VersionAdded: '0.59'
206
+ Include:
207
+ - "**/*.gemfile"
208
+ - "**/Gemfile"
209
+ - "**/gems.rb"
210
+ Whitelist: []
211
+
212
+ Style/MultilineMethodSignature:
213
+ Description: Avoid multi-line method signatures.
214
+ Enabled: false
215
+ VersionAdded: '0.59'
@@ -1 +1 @@
1
- 2.5.1
1
+ 2.6.3
@@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [0.1.0]
7
+ ## [0.2.0] - 09/04/2019
8
+ ### Changed
9
+ - Updated to ruby-version 2.6.3
10
+ - Updated rubocop to 0.74.0 to support ruby 2.6
8
11
 
12
+ ## [0.1.0]
9
13
  ### Added
10
14
  - Initial commit
11
15
 
data/Gemfile CHANGED
@@ -2,5 +2,7 @@ source "https://rubygems.org"
2
2
 
3
3
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
+ gem "mry"
6
+
5
7
  # Specify your gem's dependencies in bloom_rubocop.gemspec
6
8
  gemspec
@@ -1,44 +1,44 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bloom_rubocop (0.1.0)
5
- rubocop (= 0.58.2)
4
+ bloom_rubocop (0.2.0)
5
+ rubocop (= 0.74.0)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  ast (2.4.0)
11
11
  diff-lcs (1.3)
12
- jaro_winkler (1.5.1)
13
- parallel (1.12.1)
14
- parser (2.5.1.2)
12
+ jaro_winkler (1.5.3)
13
+ mry (0.59.0.0)
14
+ rubocop (>= 0.41.0)
15
+ parallel (1.17.0)
16
+ parser (2.6.4.0)
15
17
  ast (~> 2.4.0)
16
- powerpack (0.1.2)
17
18
  rainbow (3.0.0)
18
19
  rake (10.5.0)
19
20
  rspec (3.8.0)
20
21
  rspec-core (~> 3.8.0)
21
22
  rspec-expectations (~> 3.8.0)
22
23
  rspec-mocks (~> 3.8.0)
23
- rspec-core (3.8.0)
24
+ rspec-core (3.8.2)
24
25
  rspec-support (~> 3.8.0)
25
- rspec-expectations (3.8.1)
26
+ rspec-expectations (3.8.4)
26
27
  diff-lcs (>= 1.2.0, < 2.0)
27
28
  rspec-support (~> 3.8.0)
28
- rspec-mocks (3.8.0)
29
+ rspec-mocks (3.8.1)
29
30
  diff-lcs (>= 1.2.0, < 2.0)
30
31
  rspec-support (~> 3.8.0)
31
- rspec-support (3.8.0)
32
- rubocop (0.58.2)
32
+ rspec-support (3.8.2)
33
+ rubocop (0.74.0)
33
34
  jaro_winkler (~> 1.5.1)
34
35
  parallel (~> 1.10)
35
- parser (>= 2.5, != 2.5.1.1)
36
- powerpack (~> 0.1)
36
+ parser (>= 2.6)
37
37
  rainbow (>= 2.2.2, < 4.0)
38
38
  ruby-progressbar (~> 1.7)
39
- unicode-display_width (~> 1.0, >= 1.0.1)
40
- ruby-progressbar (1.10.0)
41
- unicode-display_width (1.4.0)
39
+ unicode-display_width (>= 1.4.0, < 1.7)
40
+ ruby-progressbar (1.10.1)
41
+ unicode-display_width (1.6.0)
42
42
 
43
43
  PLATFORMS
44
44
  ruby
@@ -46,8 +46,9 @@ PLATFORMS
46
46
  DEPENDENCIES
47
47
  bloom_rubocop!
48
48
  bundler (~> 1.16)
49
+ mry
49
50
  rake (~> 10.0)
50
51
  rspec (~> 3.0)
51
52
 
52
53
  BUNDLED WITH
53
- 1.16.2
54
+ 1.17.2
data/README.md CHANGED
@@ -19,4 +19,4 @@ inherit_gem:
19
19
  bloom_rubocop: default.yml
20
20
  ```
21
21
 
22
- Now your rubocop linter will use the `bloom_rubocop` styles
22
+ Now your rubocop linter will use the `bloom_rubocop` styles
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^exe/}) {|f| File.basename(f) }
23
23
  spec.require_paths = ["lib"]
24
24
 
25
- spec.add_dependency "rubocop", "0.58.2"
25
+ spec.add_dependency "rubocop", "0.74.0"
26
26
 
27
27
  spec.add_development_dependency "bundler", "~> 1.16"
28
28
  spec.add_development_dependency "rake", "~> 10.0"
@@ -1,3 +1,3 @@
1
1
  module BloomRubocop
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bloom_rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ace Subido
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-08 00:00:00.000000000 Z
11
+ date: 2019-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.58.2
19
+ version: 0.74.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.58.2
26
+ version: 0.74.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -108,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  requirements: []
111
- rubyforge_project:
112
- rubygems_version: 2.7.6
111
+ rubygems_version: 3.0.3
113
112
  signing_key:
114
113
  specification_version: 4
115
114
  summary: Bloom's Rubocop Configuration