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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be2ed05b6f5147c865f3147b0e0a44e68a5779100957e90d0d49ee0ad9c048d0
4
- data.tar.gz: f67179dc223331412190c56d07ecd182ed97c3d1a2dbf65cddcf4a7a4103c979
3
+ metadata.gz: 423a0a22ff1408f4dcc708c848a7880ed7e7c570aad3f2a2639f3084d8793b26
4
+ data.tar.gz: 35be6e8ddae4c14e0bd6056c5c901564c9f3c02ad3c40cf9cd72be4b9bc46892
5
5
  SHA512:
6
- metadata.gz: 1c55b88bca9c89d9d3dbdaa0e551230ff5e781a94873bd9b3d90b77fb1bb28db3f322338685f434f0488eb96b41b95b92d35d37f4da9fa2ce0917dba63738761
7
- data.tar.gz: b91b370afbaa7e4336d20522346bf0aa1b6af3983b84eaf9c2bf76eda34de6f68c531716440089dbb6e0f17888f874229b243d6bc459496296e08dc5342782ee
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- getaround-rubocop (0.1.5)
4
+ getaround-rubocop (0.1.6)
5
5
  relaxed-rubocop (= 2.5)
6
6
  rubocop (= 0.80.1)
7
7
 
@@ -24,3 +24,6 @@ module DummyModule
24
24
  end
25
25
  end
26
26
  end
27
+
28
+ module DummyModule::InlineClass
29
+ end
@@ -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'
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.5
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-27 00:00:00.000000000 Z
12
+ date: 2020-03-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: relaxed-rubocop