getaround-rubocop 0.1.5 → 0.1.6
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 +4 -4
- data/.rubocop.yml +5 -0
- data/Gemfile.lock +1 -1
- data/exemples/dummy_class.rb +3 -0
- data/getaround-rubocop.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 423a0a22ff1408f4dcc708c848a7880ed7e7c570aad3f2a2639f3084d8793b26
|
4
|
+
data.tar.gz: 35be6e8ddae4c14e0bd6056c5c901564c9f3c02ad3c40cf9cd72be4b9bc46892
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5536c58aaf0cd8e14e8b0708c9c30a772907dacdc4fc3c1179e542f2f8ba6398a8c7281a46724f0739cd23666f34eff894321b22728b9cc5a089fa12836666d2
|
7
|
+
data.tar.gz: c2d3c0da211406a2bd513c02046deb1cd525ae43d2a300a6ce9d31f95c8a913e35138919de3133675d751710a08541dd7a1fff89be58758247a0dd3e5eb25b8c
|
data/.rubocop.yml
CHANGED
@@ -4,6 +4,11 @@ inherit_gem:
|
|
4
4
|
Metrics/BlockLength:
|
5
5
|
Enabled: false # Length is an unreliable metric.
|
6
6
|
|
7
|
+
Style/ClassAndModuleChildren:
|
8
|
+
# "compact" style requires explicit module declarations
|
9
|
+
# "nested" syle promotes deep scopes which needs a lot of unnecessary indentation
|
10
|
+
Enabled: false
|
11
|
+
|
7
12
|
Layout/SpaceInsideArrayLiteralBrackets:
|
8
13
|
EnforcedStyle: no_space # Similar to prettier's config.
|
9
14
|
|
data/Gemfile.lock
CHANGED
data/exemples/dummy_class.rb
CHANGED
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.1.
|
5
|
+
gem.version = '0.1.6'
|
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"]
|
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.
|
4
|
+
version: 0.1.6
|
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: 2020-03-
|
12
|
+
date: 2020-03-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: relaxed-rubocop
|