glossgenius_style 0.1.10 → 0.1.11

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: 99adc2db0c43dbe58fdf5ddfb36bb4e2d75fb79504dec73f35f1cc75d36e6b3f
4
- data.tar.gz: 92e895b3a98c4b25bc5b5e85bf20cc9487c2afa9b598571bfe577515d9d36c5c
3
+ metadata.gz: cea983fc75f88ab1caede6ed5d58921bad112198ada0caabbc6fec524c6cd9fa
4
+ data.tar.gz: 9ab15f114a46c0945432fdfc68f92f16fd6649f737d40eff7ea66fda42ff931c
5
5
  SHA512:
6
- metadata.gz: 7ce27ab34bbfcaf35282204d66695012baac3b5c87e317c0ddbae500a4be8079f1c7d481fd09d3fdd10b45b6f0ba4cf72408e3fbe86a7e61dbe680d2aa868e7e
7
- data.tar.gz: 23ce02468f388966a7573f190d096ecac9da0f44d65631e5570b48b9fc647ae4077d3ba5e58e1d0e65818fff7a49efea1f14fa7d07166c9c64ef1542af4666f6
6
+ metadata.gz: d87047fd7d76d07ef6ecd148777d4d5cd9cd9c4bc36722aa8fb98d86667fffa7f33378f876e28eab5f1380a65f5f33790f5460ebbdce08fad02bb43966e5b433
7
+ data.tar.gz: d9fd05372ab779dd08e056ba5575acb09cc8e5d5961ae24709970f73a0d1206cd2a59e511fd3d34ef5172ab7d5d45975ec9b8e6f4f465643417fcfaf8a357e1c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- glossgenius_style (0.1.10)
4
+ glossgenius_style (0.1.11)
5
5
  rubocop (~> 0.81.0)
6
6
  rubocop-rspec (~> 1.38.1)
7
7
 
@@ -12,7 +12,7 @@ GEM
12
12
  diff-lcs (1.3)
13
13
  jaro_winkler (1.5.4)
14
14
  parallel (1.19.1)
15
- parser (2.7.1.0)
15
+ parser (2.7.1.1)
16
16
  ast (~> 2.4.0)
17
17
  rainbow (3.0.0)
18
18
  rake (13.0.1)
data/default.yml CHANGED
@@ -6,32 +6,53 @@ AllCops:
6
6
  - 'db/**/*'
7
7
  - 'vendor/**/*'
8
8
 
9
+ Layout/FirstArrayElementIndentation:
10
+ EnforcedStyle: consistent
11
+
12
+ Layout/LineLength:
13
+ Max: 120
14
+
15
+ Lint/RaiseException:
16
+ Enabled: false
17
+
18
+ Layout/SpaceAroundMethodCallOperator:
19
+ Enabled: true
20
+
21
+ Lint/StructNewOverride:
22
+ Enabled: true
23
+
9
24
  Metrics/BlockLength:
10
25
  ExcludedMethods: ['namespace', 'describe', 'context']
11
26
  Exclude:
12
27
  - 'config/**/*'
13
28
 
14
- Metrics/LineLength:
15
- Max: 120
16
-
17
- Layout/FirstArrayElementIndentation:
18
- EnforcedStyle: consistent
19
-
20
29
  RSpec/NestedGroups:
21
30
  Max: 5
22
31
 
32
+ Style/AndOr:
33
+ EnforcedStyle: conditionals
34
+
23
35
  Style/ClassAndModuleChildren:
24
36
  Enabled: false
25
37
 
26
38
  Style/Documentation:
27
39
  Enabled: false
28
40
 
41
+ Style/ExponentialNotation:
42
+ Enabled: false
43
+
29
44
  Style/FrozenStringLiteralComment:
30
45
  EnforcedStyle: always
31
46
 
47
+ Style/HashEachMethods:
48
+ Enabled: true
49
+
50
+ Style/HashTransformKeys:
51
+ Enabled: false
52
+
53
+ Style/HashTransformValues:
54
+ Enabled: false
55
+
32
56
  Style/MixinUsage:
33
57
  Exclude:
34
58
  - 'bin/*'
35
-
36
- Style/AndOr:
37
- EnforcedStyle: conditionals
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GlossgeniusStyle
4
- VERSION = '0.1.10'
4
+ VERSION = '0.1.11'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glossgenius_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - GlossGenius
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-13 00:00:00.000000000 Z
11
+ date: 2020-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop