opushon 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_todo.yml +25 -8
- data/VERSION.semver +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ea8e03f1b6f190e7e8ed521c03c87e51821c91e643bc6f35ece71b29df4ef00
|
4
|
+
data.tar.gz: 397bacffc8411b6c6a54e6e833b0c51cbe20ab55f4dfc21c70abfd018e89347b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9da7222c9d09c3c254facc6a81b8d852816ad648f19377d254516f3ebab2821d91732b806542a7d1f7428d50845e21917ca134abd2c48a2484af05e9e7f8445e
|
7
|
+
data.tar.gz: 1128db31bf9aa46ddc6dd23f4c0a2b56a281752cce06344f38393508c4354408e32bbf1204a4ddb2a55fcd06ab9e54636cd2ecde2964fc26508698dfaa37e3b1
|
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on 2019-08-26
|
3
|
+
# on 2019-08-26 15:48:09 +0200 using RuboCop version 0.74.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
@@ -14,7 +14,7 @@ Gemspec/OrderedDependencies:
|
|
14
14
|
Exclude:
|
15
15
|
- 'opushon.gemspec'
|
16
16
|
|
17
|
-
# Offense count:
|
17
|
+
# Offense count: 50
|
18
18
|
# Cop supports --auto-correct.
|
19
19
|
# Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
|
20
20
|
# SupportedHashRocketStyles: key, separator, table
|
@@ -29,7 +29,7 @@ Layout/AlignHash:
|
|
29
29
|
- 'lib/opushon/response.rb'
|
30
30
|
- 'lib/opushon/restricted_value.rb'
|
31
31
|
|
32
|
-
# Offense count:
|
32
|
+
# Offense count: 352
|
33
33
|
# Cop supports --auto-correct.
|
34
34
|
# Configuration parameters: AllowForAlignment.
|
35
35
|
Layout/SpaceAroundOperators:
|
@@ -45,10 +45,27 @@ Layout/SpaceInsideHashLiteralBraces:
|
|
45
45
|
Exclude:
|
46
46
|
- 'test/test_opushon.rb'
|
47
47
|
|
48
|
-
# Offense count:
|
48
|
+
# Offense count: 6
|
49
|
+
Metrics/AbcSize:
|
50
|
+
Max: 51
|
51
|
+
|
52
|
+
# Offense count: 2
|
53
|
+
Metrics/CyclomaticComplexity:
|
54
|
+
Max: 21
|
55
|
+
|
56
|
+
# Offense count: 6
|
49
57
|
# Configuration parameters: CountComments, ExcludedMethods.
|
50
58
|
Metrics/MethodLength:
|
51
|
-
Max:
|
59
|
+
Max: 36
|
60
|
+
|
61
|
+
# Offense count: 1
|
62
|
+
# Configuration parameters: CountKeywordArgs.
|
63
|
+
Metrics/ParameterLists:
|
64
|
+
Max: 11
|
65
|
+
|
66
|
+
# Offense count: 2
|
67
|
+
Metrics/PerceivedComplexity:
|
68
|
+
Max: 21
|
52
69
|
|
53
70
|
# Offense count: 2
|
54
71
|
# Cop supports --auto-correct.
|
@@ -67,7 +84,7 @@ Style/Documentation:
|
|
67
84
|
- 'lib/opushon/request.rb'
|
68
85
|
- 'lib/opushon/response.rb'
|
69
86
|
|
70
|
-
# Offense count:
|
87
|
+
# Offense count: 352
|
71
88
|
# Cop supports --auto-correct.
|
72
89
|
# Configuration parameters: EnforcedStyle, UseHashRocketsWithSymbolValues, PreferHashRocketsForNonAlnumEndingSymbols.
|
73
90
|
# SupportedStyles: ruby19, hash_rockets, no_mixed_keys, ruby19_no_mixed_keys
|
@@ -95,9 +112,9 @@ Style/StringLiterals:
|
|
95
112
|
Style/WordArray:
|
96
113
|
EnforcedStyle: brackets
|
97
114
|
|
98
|
-
# Offense count:
|
115
|
+
# Offense count: 32
|
99
116
|
# Cop supports --auto-correct.
|
100
117
|
# Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
101
118
|
# URISchemes: http, https
|
102
119
|
Metrics/LineLength:
|
103
|
-
Max:
|
120
|
+
Max: 3524
|
data/VERSION.semver
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.4
|