getaround-rubocop 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop-rspec.yml +9 -0
- data/Gemfile.lock +15 -15
- data/getaround-rubocop.gemspec +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a22bc10f7e80edcd83947d713edb22cb3796a9d39e5659612f311dbf9fab9407
|
4
|
+
data.tar.gz: a0f7bbac938030cab2addc9e450ba19545717a28b5dbada5f7ae6d9131221237
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f184487d05c6176772703807b05123e3605acd5bf2bdc5295353922a8351f1d65d01eb015845b07a276ba3ca79ee00d39ae1844b7e003f1bf122e7d54bd2a295
|
7
|
+
data.tar.gz: 89ff4abdc4f1f0828c00287dc41524432fa5c67a3d7945a75de401e58c421808e43ebb6d9d5b893c6fdd962b175ac87459cb611068843039e811c65bff652df8
|
data/.rubocop-rspec.yml
CHANGED
@@ -14,3 +14,12 @@ RSpec/MultipleExpectations:
|
|
14
14
|
|
15
15
|
RSpec/MessageSpies:
|
16
16
|
Enabled: false # Induces unnecessary repetition in the expectation
|
17
|
+
|
18
|
+
RSpec/StubbedMock:
|
19
|
+
Enabled: false # StubbedMock semantics are different
|
20
|
+
|
21
|
+
RSpec/SubjectStub:
|
22
|
+
Enabled: false # RSpec/SubjectStub is an accepted pattern
|
23
|
+
|
24
|
+
RSpec/VerifiedDoubles:
|
25
|
+
Enabled: false # double have a more practical interface
|
data/Gemfile.lock
CHANGED
@@ -3,36 +3,36 @@ PATH
|
|
3
3
|
specs:
|
4
4
|
getaround-rubocop (0.2.3)
|
5
5
|
relaxed-rubocop (= 2.5)
|
6
|
-
rubocop (= 1.
|
7
|
-
rubocop-rspec (= 2.
|
6
|
+
rubocop (= 1.11.0)
|
7
|
+
rubocop-rspec (= 2.2.0)
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
ast (2.4.
|
13
|
-
parallel (1.20.
|
14
|
-
parser (
|
12
|
+
ast (2.4.2)
|
13
|
+
parallel (1.20.1)
|
14
|
+
parser (3.0.0.0)
|
15
15
|
ast (~> 2.4.1)
|
16
16
|
rainbow (3.0.0)
|
17
|
-
regexp_parser (1.
|
17
|
+
regexp_parser (2.1.1)
|
18
18
|
relaxed-rubocop (2.5)
|
19
19
|
rexml (3.2.4)
|
20
|
-
rubocop (1.
|
20
|
+
rubocop (1.11.0)
|
21
21
|
parallel (~> 1.10)
|
22
|
-
parser (>=
|
22
|
+
parser (>= 3.0.0.0)
|
23
23
|
rainbow (>= 2.2.2, < 4.0)
|
24
|
-
regexp_parser (>= 1.8)
|
24
|
+
regexp_parser (>= 1.8, < 3.0)
|
25
25
|
rexml
|
26
|
-
rubocop-ast (>= 1.
|
26
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
27
27
|
ruby-progressbar (~> 1.7)
|
28
|
-
unicode-display_width (>= 1.4.0, <
|
29
|
-
rubocop-ast (1.
|
28
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
29
|
+
rubocop-ast (1.4.1)
|
30
30
|
parser (>= 2.7.1.5)
|
31
|
-
rubocop-rspec (2.
|
31
|
+
rubocop-rspec (2.2.0)
|
32
32
|
rubocop (~> 1.0)
|
33
33
|
rubocop-ast (>= 1.1.0)
|
34
|
-
ruby-progressbar (1.
|
35
|
-
unicode-display_width (
|
34
|
+
ruby-progressbar (1.11.0)
|
35
|
+
unicode-display_width (2.0.0)
|
36
36
|
|
37
37
|
PLATFORMS
|
38
38
|
ruby
|
data/getaround-rubocop.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = "getaround-rubocop"
|
5
|
-
gem.version = '0.2.
|
5
|
+
gem.version = '0.2.4'
|
6
6
|
gem.summary = "Backend configuration files"
|
7
7
|
gem.description = "Shared base configuration for Getaround Backend Applications."
|
8
8
|
gem.authors = ["Drivy", "Laurent Humez"]
|
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
|
|
16
16
|
end
|
17
17
|
|
18
18
|
gem.add_runtime_dependency 'relaxed-rubocop', '= 2.5'
|
19
|
-
gem.add_runtime_dependency 'rubocop', '= 1.
|
20
|
-
gem.add_runtime_dependency 'rubocop-rspec', '= 2.
|
19
|
+
gem.add_runtime_dependency 'rubocop', '= 1.11.0'
|
20
|
+
gem.add_runtime_dependency 'rubocop-rspec', '= 2.2.0'
|
21
21
|
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.2.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Drivy
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-03-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: relaxed-rubocop
|
@@ -31,28 +31,28 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - '='
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 1.
|
34
|
+
version: 1.11.0
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - '='
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 1.
|
41
|
+
version: 1.11.0
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: rubocop-rspec
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - '='
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 2.
|
48
|
+
version: 2.2.0
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - '='
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 2.
|
55
|
+
version: 2.2.0
|
56
56
|
description: Shared base configuration for Getaround Backend Applications.
|
57
57
|
email:
|
58
58
|
- oss@drivy.com
|