getaround-rubocop 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: cbdb324580e982d9f8d7c6a461b7b59ed5a544d4
4
- data.tar.gz: f82797edba9d2b07ff94568ce60831456e2b4983
2
+ SHA256:
3
+ metadata.gz: 0aad9fcf00a7bb13e4e3bed710504d3c1b67c89b98f3158d1fe728345bcc56d2
4
+ data.tar.gz: 23c14c99711b5ce8c5d09076f46f05b72afcf4cee7cb5a477afbac55352e31a7
5
5
  SHA512:
6
- metadata.gz: 858be91aeae5b1f29e073772f09bb6c0924da1f6f1ebd38fdd9be5845d268a741069b427bba070a18c97a5502e06d8ac6259aafd6597aea3ac8e50b24ca656c7
7
- data.tar.gz: 7708c099e50a4f7dee85106917801825d64d7a65621d10bd7f47be378c153b4d7586aded52a7ebe8c20c9291568558ac5f196193b568b5c65bfce4f956c299c6
6
+ metadata.gz: bcbdfd0734a5b12a034b8bbfefd93e526aa1dee28d6b5bb57069011a0fbb10261f56286389e154339dc961649b2334b8e5ad5910591e010916662b1e73f884df
7
+ data.tar.gz: 375502a4474c478561afd2317f85bcc8272574de3eb051d4f5d4d775515a0741ed54476b71b57c5503cfb31b3effbaa0975f5685d97fc7c97b9c834a42c23dff
data/.rubocop-rspec.yml CHANGED
@@ -1,5 +1,5 @@
1
- inherit_gem:
2
- relaxed-rubocop: .rubocop.yml
1
+ require:
2
+ - rubocop-rspec
3
3
 
4
4
  RSpec/NamedSubject:
5
5
  Description: No justification to why this is better.
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,38 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ getaround-rubocop (0.1.0)
5
+ relaxed-rubocop (~> 2.4, >= 2.4.0)
6
+ rubocop (~> 0.75, >= 0.75.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.0)
12
+ jaro_winkler (1.5.4)
13
+ parallel (1.18.0)
14
+ parser (2.6.5.0)
15
+ ast (~> 2.4.0)
16
+ rainbow (3.0.0)
17
+ relaxed-rubocop (2.4)
18
+ rubocop (0.76.0)
19
+ jaro_winkler (~> 1.5.1)
20
+ parallel (~> 1.10)
21
+ parser (>= 2.6)
22
+ rainbow (>= 2.2.2, < 4.0)
23
+ ruby-progressbar (~> 1.7)
24
+ unicode-display_width (>= 1.4.0, < 1.7)
25
+ rubocop-rspec (1.36.0)
26
+ rubocop (>= 0.68.1)
27
+ ruby-progressbar (1.10.1)
28
+ unicode-display_width (1.6.0)
29
+
30
+ PLATFORMS
31
+ ruby
32
+
33
+ DEPENDENCIES
34
+ getaround-rubocop!
35
+ rubocop-rspec (~> 1.36, >= 0.36.0)
36
+
37
+ BUNDLED WITH
38
+ 2.0.2
data/README.md CHANGED
@@ -24,7 +24,7 @@ inherit_gem:
24
24
  In your `.rubocop.yml`:
25
25
 
26
26
  ```
27
- require_gem
27
+ require:
28
28
  - rubocop-rspec
29
29
 
30
30
  inherit_gem:
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = "getaround-rubocop"
3
- gem.version = File.read('./VERSION')
3
+ gem.version = '0.1.1'
4
4
  gem.summary = "Backend configuration files"
5
5
  gem.description = "Shared base configuration for Getaround Backend Applications."
6
6
  gem.authors = ["Drivy", "Laurent Humez"]
@@ -8,8 +8,11 @@ Gem::Specification.new do |gem|
8
8
  gem.homepage = "https://github.com/drivy"
9
9
  gem.license = "MIT"
10
10
 
11
- gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^(?:tmp)/ }
11
+ gem.files = Dir.chdir(File.expand_path(__dir__)) do
12
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
13
+ end
12
14
 
13
15
  gem.add_runtime_dependency "relaxed-rubocop", '~> 2.4', '>= 2.4.0'
14
16
  gem.add_runtime_dependency "rubocop", '~> 0.75', '>= 0.75.0'
17
+ gem.add_development_dependency 'rubocop-rspec', '~> 1.36', '>= 0.36.0'
15
18
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: getaround-rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Drivy
@@ -9,48 +9,68 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-10-31 00:00:00.000000000 Z
12
+ date: 2019-11-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: relaxed-rubocop
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: '2.4'
21
18
  - - ">="
22
19
  - !ruby/object:Gem::Version
23
20
  version: 2.4.0
21
+ - - "~>"
22
+ - !ruby/object:Gem::Version
23
+ version: '2.4'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
- - - "~>"
29
- - !ruby/object:Gem::Version
30
- version: '2.4'
31
28
  - - ">="
32
29
  - !ruby/object:Gem::Version
33
30
  version: 2.4.0
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.4'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: rubocop
36
36
  requirement: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.75'
41
38
  - - ">="
42
39
  - !ruby/object:Gem::Version
43
40
  version: 0.75.0
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: '0.75'
44
44
  type: :runtime
45
45
  prerelease: false
46
46
  version_requirements: !ruby/object:Gem::Requirement
47
47
  requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 0.75.0
48
51
  - - "~>"
49
52
  - !ruby/object:Gem::Version
50
53
  version: '0.75'
54
+ - !ruby/object:Gem::Dependency
55
+ name: rubocop-rspec
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
51
58
  - - ">="
52
59
  - !ruby/object:Gem::Version
53
- version: 0.75.0
60
+ version: 0.36.0
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '1.36'
64
+ type: :development
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 0.36.0
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '1.36'
54
74
  description: Shared base configuration for Getaround Backend Applications.
55
75
  email:
56
76
  - oss@drivy.com
@@ -60,8 +80,9 @@ extra_rdoc_files: []
60
80
  files:
61
81
  - ".rubocop-rspec.yml"
62
82
  - ".rubocop.yml"
83
+ - Gemfile
84
+ - Gemfile.lock
63
85
  - README.md
64
- - VERSION
65
86
  - getaround-rubocop.gemspec
66
87
  homepage: https://github.com/drivy
67
88
  licenses:
@@ -82,8 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
103
  - !ruby/object:Gem::Version
83
104
  version: '0'
84
105
  requirements: []
85
- rubyforge_project:
86
- rubygems_version: 2.5.2.3
106
+ rubygems_version: 3.0.3
87
107
  signing_key:
88
108
  specification_version: 4
89
109
  summary: Backend configuration files
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.1.0