mad_rubocop 3.5.2 → 3.5.3

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: 4183fca13f4d2449ce999f1bd2b38289ba1ac2bd074d1f7266b242d3f1b73405
4
- data.tar.gz: a29fc7ffce25b133b20ba62f53153317c2eea055f0a5202362ad656d5957c281
3
+ metadata.gz: cb93e3eb83c145be7fe5002e95cbf0def908008532599b60747af7c230dbca21
4
+ data.tar.gz: e89f011a86404a089ce45dcf50eef6ed24c47acb1ab91abe724dcb9fcf8bd9a1
5
5
  SHA512:
6
- metadata.gz: 7945fcaa2459f705979abe6de0a211b5916e2c4ed19eebdc170deb6fa25863c7e1f112093ba98f2c023f4b9a2eed5ec0ff8b58d103b39e9c1d4c79500844516b
7
- data.tar.gz: 6bef19523c1f779bc8557718bd58e86ea916fcb2dfeb516f20cf662503758badd60e70615c2e22df2dd89e3b157b7543fa1b6dd7b6f1b7ba3b32b3b88bf0be04
6
+ metadata.gz: d6334cac8f948ad002822445681a9bdc73c8bf0334fc18fbbad4c9b47b3c5e1eda9b819a1d8bd45fb1e7acd7c73a8a64909d58595473cd62365a97b29818545c
7
+ data.tar.gz: 548ead0efaf1abdd208bc6842abc0d1f4190f772abeecaa360d5e723dbf08f26748de35a2141a45130b956f3010b4b1a6a17d1b3c8740d723c165dd970113b79
@@ -5,6 +5,14 @@ Bundler/InsecureProtocolSource:
5
5
  Gemspec/OrderedDependencies:
6
6
  Enabled: false
7
7
 
8
+ Layout/AlignHash:
9
+ Enabled: false
10
+ Layout/ClosingHeredocIndentation:
11
+ Enabled: false
12
+ Layout/ClosingParenthesisIndentation:
13
+ Enabled: false
14
+ Layout/EmptyLineAfterGuardClause:
15
+ Enabled: false
8
16
  Layout/ExtraSpacing:
9
17
  Enabled: false
10
18
  Layout/FirstArrayElementLineBreak:
@@ -17,9 +25,11 @@ Layout/FirstMethodParameterLineBreak:
17
25
  Enabled: false
18
26
  Layout/IndentHeredoc:
19
27
  Enabled: false
20
- Lint/AmbiguousBlockAssociation:
28
+ Layout/LeadingBlankLines:
21
29
  Enabled: false
22
30
 
31
+ Lint/AmbiguousBlockAssociation:
32
+ Enabled: false
23
33
  Lint/BooleanSymbol:
24
34
  Enabled: false
25
35
  Lint/RedundantWithIndex:
@@ -32,6 +42,8 @@ Lint/ReturnInVoidContext:
32
42
  Enabled: false
33
43
  Lint/ScriptPermission:
34
44
  Enabled: false
45
+ Lint/UnneededCopDisableDirective:
46
+ Enabled: false
35
47
  Lint/UnneededRequireStatement:
36
48
  Enabled: false
37
49
  Lint/UriEscapeUnescape:
@@ -62,8 +74,12 @@ Metrics/PerceivedComplexity:
62
74
 
63
75
  Naming/HeredocDelimiterCase:
64
76
  Enabled: false
77
+ Naming/MemoizedInstanceVariableName:
78
+ Enabled: false
65
79
  Naming/PredicateName:
66
80
  Enabled: false
81
+ Naming/UncommunicativeMethodParamName:
82
+ Enabled: false
67
83
  Naming/VariableNumber:
68
84
  Enabled: false
69
85
 
@@ -71,6 +87,8 @@ Performance/Casecmp:
71
87
  Enabled: false
72
88
  Performance/Detect:
73
89
  Enabled: false
90
+ Performance/InefficientHashSearch:
91
+ Enabled: false
74
92
  Performance/RegexpMatch:
75
93
  Enabled: false
76
94
  Performance/StringReplacement:
@@ -82,6 +100,8 @@ Performance/UriDefaultParser:
82
100
 
83
101
  Rails/ActionFilter:
84
102
  Enabled: false
103
+ Rails/ActiveRecordAliases:
104
+ Enabled: false
85
105
  Rails/Blank:
86
106
  Enabled: false
87
107
  Rails/Date:
@@ -94,6 +114,10 @@ Rails/FilePath:
94
114
  Enabled: false
95
115
  Rails/HasManyOrHasOneDependent:
96
116
  Enabled: false
117
+ Rails/HttpStatus:
118
+ Enabled: false
119
+ Rails/LexicallyScopedActionFilter:
120
+ Enabled: false
97
121
  Rails/PluralizationGrammar:
98
122
  Enabled: false
99
123
  Rails/SkipsModelValidations:
@@ -109,6 +133,8 @@ Security/YAMLLoad:
109
133
 
110
134
  Style/AutoResourceCleanup:
111
135
  Enabled: false
136
+ Style/ConditionalAssignment:
137
+ Enabled: false
112
138
  Style/CollectionMethods:
113
139
  Enabled: false
114
140
  Style/CommentedKeyword:
@@ -129,12 +155,16 @@ Style/EmptyCaseCondition:
129
155
  Enabled: false
130
156
  Style/Encoding:
131
157
  Enabled: false
158
+ Style/ExpandPathArguments:
159
+ Enabled: false
132
160
  Style/FormatString:
133
161
  Enabled: false
134
162
  Style/FrozenStringLiteralComment:
135
163
  Enabled: false
136
164
  Style/GuardClause:
137
165
  Enabled: false
166
+ Style/IfUnlessModifier:
167
+ Enabled: false
138
168
  Style/InlineComment:
139
169
  Enabled: false
140
170
  Style/Lambda:
@@ -159,6 +189,8 @@ Style/RedundantConditional:
159
189
  Enabled: false
160
190
  Style/RedundantParentheses:
161
191
  Enabled: false
192
+ Style/RedundantReturn:
193
+ Enabled: false
162
194
  Style/RedundantSelf:
163
195
  Enabled: false
164
196
  Style/RegexpLiteral:
@@ -189,6 +221,8 @@ Style/TrailingCommaInHashLiteral:
189
221
  Enabled: false
190
222
  Style/TrailingUnderscoreVariable:
191
223
  Enabled: false
224
+ Style/UnneededCondition:
225
+ Enabled: false
192
226
  Style/UnneededInterpolation:
193
227
  Enabled: false
194
228
  Style/WordArray:
@@ -1,3 +1,3 @@
1
1
  module MadRubocop
2
- VERSION = "3.5.2"
2
+ VERSION = "3.5.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mad_rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.2
4
+ version: 3.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zach Toolson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-14 00:00:00.000000000 Z
11
+ date: 2019-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement