scopable 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5a3bcc2de0db35befe93021d9db35d31618e6040bfada9e0b3a2073290503280
4
- data.tar.gz: 22eb8fc269eef1a7ea07e8902d5ac4dc6af46663a6bdeecedd77ff95e969fe2d
3
+ metadata.gz: a6a9b1dbef885a2fadc8df154f7038f4df9a332ea42a8ff30dd1d71cfbce32f6
4
+ data.tar.gz: 2e008acbdc875493bb24e153cdfcd421f8d269d0fe62118225c67cb19c015b50
5
5
  SHA512:
6
- metadata.gz: 51a2bd239421d72d8180f8137d0aec49eaaf68f5f7815c41ad204f6ccbb3158e9eb3dbe02fea4f6c5af4188a0004c4664a82272366fda4eb80dac59e5c6c5f9d
7
- data.tar.gz: 336818370d75470b375595be0494a2dfcc6aa3ec24d6efc47c26fad209f6f2dc945027279a3b0f59d760f54d83133d7b2d20072d305bd88ace12e7b3aab057d1
6
+ metadata.gz: 1f1e81aeed00b957ae73d1708e21c9e0abdca2e2898dc8d61bbe77448e325336be2577ea1e3451b85a8a43fca596ebb08756986d62504a66b330dce54c5c7eaa
7
+ data.tar.gz: aa581672f0cb367f0c623819f63749b2286db475893459a62560974242b60a0234d26a50fbb1cbc30fbde5d185500aa73ed84de867c62bdb07a5ba8fd7f46410
@@ -1,1157 +1,4 @@
1
1
  AllCops:
2
- DisabledByDefault: true
3
-
4
- #################### Lint ################################
5
-
6
- Lint/AmbiguousOperator:
7
- Description: >-
8
- Checks for ambiguous operators in the first argument of a
9
- method invocation without parentheses.
10
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-as-args'
11
- Enabled: true
12
-
13
- Lint/AmbiguousRegexpLiteral:
14
- Description: >-
15
- Checks for ambiguous regexp literals in the first argument of
16
- a method invocation without parenthesis.
17
- Enabled: true
18
-
19
- Lint/AssignmentInCondition:
20
- Description: "Don't use assignment in conditions."
21
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition'
22
- Enabled: true
23
-
24
- Lint/BlockAlignment:
25
- Description: 'Align block ends correctly.'
26
- Enabled: true
27
-
28
- Lint/CircularArgumentReference:
29
- Description: "Don't refer to the keyword argument in the default value."
30
- Enabled: true
31
-
32
- Lint/ConditionPosition:
33
- Description: >-
34
- Checks for condition placed in a confusing position relative to
35
- the keyword.
36
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#same-line-condition'
37
- Enabled: true
38
-
39
- Lint/Debugger:
40
- Description: 'Check for debugger calls.'
41
- Enabled: true
42
-
43
- Lint/DefEndAlignment:
44
- Description: 'Align ends corresponding to defs correctly.'
45
- Enabled: true
46
-
47
- Lint/DeprecatedClassMethods:
48
- Description: 'Check for deprecated class method calls.'
49
- Enabled: true
50
-
51
- Lint/DuplicateMethods:
52
- Description: 'Check for duplicate methods calls.'
53
- Enabled: true
54
-
55
- Lint/EachWithObjectArgument:
56
- Description: 'Check for immutable argument given to each_with_object.'
57
- Enabled: true
58
-
59
- Lint/ElseLayout:
60
- Description: 'Check for odd code arrangement in an else block.'
61
- Enabled: true
62
-
63
- Lint/EmptyEnsure:
64
- Description: 'Checks for empty ensure block.'
65
- Enabled: true
66
-
67
- Lint/EmptyInterpolation:
68
- Description: 'Checks for empty string interpolation.'
69
- Enabled: true
70
-
71
- Lint/EndAlignment:
72
- Description: 'Align ends correctly.'
73
- Enabled: true
74
-
75
- Lint/EndInMethod:
76
- Description: 'END blocks should not be placed inside method definitions.'
77
- Enabled: true
78
-
79
- Lint/EnsureReturn:
80
- Description: 'Do not use return in an ensure block.'
81
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-return-ensure'
82
- Enabled: true
83
-
84
- Lint/Eval:
85
- Description: 'The use of eval represents a serious security risk.'
86
- Enabled: true
87
-
88
- Lint/FormatParameterMismatch:
89
- Description: 'The number of parameters to format/sprint must match the fields.'
90
- Enabled: true
91
-
92
- Lint/HandleExceptions:
93
- Description: "Don't suppress exception."
94
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions'
95
- Enabled: true
96
-
97
- Lint/InvalidCharacterLiteral:
98
- Description: >-
99
- Checks for invalid character literals with a non-escaped
100
- whitespace character.
101
- Enabled: true
102
-
103
- Lint/LiteralInCondition:
104
- Description: 'Checks of literals used in conditions.'
105
- Enabled: true
106
-
107
- Lint/LiteralInInterpolation:
108
- Description: 'Checks for literals used in interpolation.'
109
- Enabled: true
110
-
111
- Lint/Loop:
112
- Description: >-
113
- Use Kernel#loop with break rather than begin/end/until or
114
- begin/end/while for post-loop tests.
115
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#loop-with-break'
116
- Enabled: true
117
-
118
- Lint/NestedMethodDefinition:
119
- Description: 'Do not use nested method definitions.'
120
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-methods'
121
- Enabled: true
122
-
123
- Lint/NonLocalExitFromIterator:
124
- Description: 'Do not use return in iterator to cause non-local exit.'
125
- Enabled: true
126
-
127
- Lint/ParenthesesAsGroupedExpression:
128
- Description: >-
129
- Checks for method calls with a space before the opening
130
- parenthesis.
131
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
132
- Enabled: true
133
-
134
- Lint/RequireParentheses:
135
- Description: >-
136
- Use parentheses in the method call to avoid confusion
137
- about precedence.
138
- Enabled: true
139
-
140
- Lint/RescueException:
141
- Description: 'Avoid rescuing the Exception class.'
142
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-blind-rescues'
143
- Enabled: true
144
-
145
- Lint/ShadowingOuterLocalVariable:
146
- Description: >-
147
- Do not use the same name as outer local variable
148
- for block arguments or block local variables.
149
- Enabled: true
150
-
151
- Lint/StringConversionInInterpolation:
152
- Description: 'Checks for Object#to_s usage in string interpolation.'
153
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-to-s'
154
- Enabled: true
155
-
156
- Lint/UnderscorePrefixedVariableName:
157
- Description: 'Do not use prefix `_` for a variable that is used.'
158
- Enabled: true
159
-
160
- Lint/UnneededDisable:
161
- Description: >-
162
- Checks for rubocop:disable comments that can be removed.
163
- Note: this cop is not disabled when disabling all cops.
164
- It must be explicitly disabled.
165
- Enabled: true
166
-
167
- Lint/UnusedBlockArgument:
168
- Description: 'Checks for unused block arguments.'
169
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars'
170
- Enabled: true
171
-
172
- Lint/UnusedMethodArgument:
173
- Description: 'Checks for unused method arguments.'
174
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars'
175
- Enabled: true
176
-
177
- Lint/UnreachableCode:
178
- Description: 'Unreachable code.'
179
- Enabled: true
180
-
181
- Lint/UselessAccessModifier:
182
- Description: 'Checks for useless access modifiers.'
183
- Enabled: true
184
-
185
- Lint/UselessAssignment:
186
- Description: 'Checks for useless assignment to a local variable.'
187
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars'
188
- Enabled: true
189
-
190
- Lint/UselessComparison:
191
- Description: 'Checks for comparison of something with itself.'
192
- Enabled: true
193
-
194
- Lint/UselessElseWithoutRescue:
195
- Description: 'Checks for useless `else` in `begin..end` without `rescue`.'
196
- Enabled: true
197
-
198
- Lint/UselessSetterCall:
199
- Description: 'Checks for useless setter call to a local variable.'
200
- Enabled: true
201
-
202
- Lint/Void:
203
- Description: 'Possible use of operator/literal/variable in void context.'
204
- Enabled: true
205
-
206
- ###################### Metrics ####################################
207
-
208
- Metrics/AbcSize:
209
- Description: >-
210
- A calculated magnitude based on number of assignments,
211
- branches, and conditions.
212
- Reference: 'http://c2.com/cgi/wiki?AbcMetric'
213
- Enabled: false
214
- Max: 20
215
-
216
- Metrics/BlockNesting:
217
- Description: 'Avoid excessive block nesting'
218
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count'
219
- Enabled: true
220
- Max: 4
221
-
222
- Metrics/ClassLength:
223
- Description: 'Avoid classes longer than 250 lines of code.'
224
- Enabled: true
225
- Max: 250
226
-
227
- Metrics/CyclomaticComplexity:
228
- Description: >-
229
- A complexity metric that is strongly correlated to the number
230
- of test cases needed to validate a method.
231
- Enabled: true
232
- Max: 18
233
-
234
- Metrics/LineLength:
235
- Description: 'Limit lines to 80 characters.'
236
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
237
- Enabled: false
238
-
239
- Metrics/MethodLength:
240
- Description: 'Avoid methods longer than 30 lines of code.'
241
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#short-methods'
242
- Enabled: true
243
- Max: 30
244
-
245
- Metrics/ModuleLength:
246
- Description: 'Avoid modules longer than 250 lines of code.'
247
- Enabled: true
248
- Max: 250
249
-
250
- Metrics/ParameterLists:
251
- Description: 'Avoid parameter lists longer than three or four parameters.'
252
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#too-many-params'
253
- Enabled: true
254
-
255
- Metrics/PerceivedComplexity:
256
- Description: >-
257
- A complexity metric geared towards measuring complexity for a
258
- human reader.
259
- Enabled: false
260
-
261
- ##################### Performance #############################
262
-
263
- Performance/Count:
264
- Description: >-
265
- Use `count` instead of `select...size`, `reject...size`,
266
- `select...count`, `reject...count`, `select...length`,
267
- and `reject...length`.
268
- Enabled: true
269
-
270
- Performance/Detect:
271
- Description: >-
272
- Use `detect` instead of `select.first`, `find_all.first`,
273
- `select.last`, and `find_all.last`.
274
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerabledetect-vs-enumerableselectfirst-code'
275
- Enabled: true
276
-
277
- Performance/FlatMap:
278
- Description: >-
279
- Use `Enumerable#flat_map`
280
- instead of `Enumerable#map...Array#flatten(1)`
281
- or `Enumberable#collect..Array#flatten(1)`
282
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablemaparrayflatten-vs-enumerableflat_map-code'
283
- Enabled: true
284
- EnabledForFlattenWithoutParams: false
285
- # If enabled, this cop will warn about usages of
286
- # `flatten` being called without any parameters.
287
- # This can be dangerous since `flat_map` will only flatten 1 level, and
288
- # `flatten` without any parameters can flatten multiple levels.
289
-
290
- Performance/ReverseEach:
291
- Description: 'Use `reverse_each` instead of `reverse.each`.'
292
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#enumerablereverseeach-vs-enumerablereverse_each-code'
293
- Enabled: true
294
-
295
- Performance/Sample:
296
- Description: >-
297
- Use `sample` instead of `shuffle.first`,
298
- `shuffle.last`, and `shuffle[Fixnum]`.
299
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#arrayshufflefirst-vs-arraysample-code'
300
- Enabled: true
301
-
302
- Performance/Size:
303
- Description: >-
304
- Use `size` instead of `count` for counting
305
- the number of elements in `Array` and `Hash`.
306
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#arraycount-vs-arraysize-code'
307
- Enabled: true
308
-
309
- Performance/StringReplacement:
310
- Description: >-
311
- Use `tr` instead of `gsub` when you are replacing the same
312
- number of characters. Use `delete` instead of `gsub` when
313
- you are deleting characters.
314
- Reference: 'https://github.com/JuanitoFatas/fast-ruby#stringgsub-vs-stringtr-code'
315
- Enabled: true
316
-
317
- ##################### Rails ##################################
318
-
319
- Rails/ActionFilter:
320
- Description: 'Enforces consistent use of action filter methods.'
321
- Enabled: false
322
-
323
- Rails/Date:
324
- Description: >-
325
- Checks the correct usage of date aware methods,
326
- such as Date.today, Date.current etc.
327
- Enabled: false
328
-
329
- Rails/Delegate:
330
- Description: 'Prefer delegate method for delegations.'
331
- Enabled: false
332
-
333
- Rails/FindBy:
334
- Description: 'Prefer find_by over where.first.'
335
- Enabled: false
336
-
337
- Rails/FindEach:
338
- Description: 'Prefer all.find_each over all.find.'
339
- Enabled: false
340
-
341
- Rails/HasAndBelongsToMany:
342
- Description: 'Prefer has_many :through to has_and_belongs_to_many.'
343
- Enabled: false
344
-
345
- Rails/Output:
346
- Description: 'Checks for calls to puts, print, etc.'
347
- Enabled: false
348
-
349
- Rails/ReadWriteAttribute:
350
- Description: >-
351
- Checks for read_attribute(:attr) and
352
- write_attribute(:attr, val).
353
- Enabled: false
354
-
355
- Rails/ScopeArgs:
356
- Description: 'Checks the arguments of ActiveRecord scopes.'
357
- Enabled: false
358
-
359
- Rails/TimeZone:
360
- Description: 'Checks the correct usage of time zone aware methods.'
361
- StyleGuide: 'https://github.com/bbatsov/rails-style-guide#time'
362
- Reference: 'http://danilenko.org/2012/7/6/rails_timezones'
363
- Enabled: false
364
-
365
- Rails/Validation:
366
- Description: 'Use validates :attribute, hash of validations.'
367
- Enabled: false
368
-
369
- ################## Style #################################
370
-
371
- Style/AccessModifierIndentation:
372
- Description: Check indentation of private/protected visibility modifiers.
373
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected'
374
- Enabled: false
375
-
376
- Style/AccessorMethodName:
377
- Description: Check the naming of accessor methods for get_/set_.
378
- Enabled: false
379
-
380
- Style/Alias:
381
- Description: 'Use alias_method instead of alias.'
382
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
383
- Enabled: false
384
-
385
- Style/AlignArray:
386
- Description: >-
387
- Align the elements of an array literal if they span more than
388
- one line.
389
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#align-multiline-arrays'
390
- Enabled: false
391
-
392
- Style/AlignHash:
393
- Description: >-
394
- Align the elements of a hash literal if they span more than
395
- one line.
396
- Enabled: false
397
-
398
- Style/AlignParameters:
399
- Description: >-
400
- Align the parameters of a method call if they span more
401
- than one line.
402
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-double-indent'
403
- Enabled: false
404
-
405
- Style/AndOr:
406
- Description: 'Use &&/|| instead of and/or.'
407
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-and-or-or'
408
- Enabled: false
409
-
410
- Style/ArrayJoin:
411
- Description: 'Use Array#join instead of Array#*.'
412
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
413
- Enabled: false
414
-
415
- Style/AsciiComments:
416
- Description: 'Use only ascii symbols in comments.'
417
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
418
- Enabled: false
419
-
420
- Style/AsciiIdentifiers:
421
- Description: 'Use only ascii symbols in identifiers.'
422
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
423
- Enabled: false
424
-
425
- Style/Attr:
426
- Description: 'Checks for uses of Module#attr.'
427
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr'
428
- Enabled: false
429
-
430
- Style/BeginBlock:
431
- Description: 'Avoid the use of BEGIN blocks.'
432
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-BEGIN-blocks'
433
- Enabled: false
434
-
435
- Style/BarePercentLiterals:
436
- Description: 'Checks if usage of %() or %Q() matches configuration.'
437
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-q-shorthand'
438
- Enabled: false
439
-
440
- Style/BlockComments:
441
- Description: 'Do not use block comments.'
442
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-block-comments'
443
- Enabled: false
444
-
445
- Style/BlockEndNewline:
446
- Description: 'Put end statement of multiline block on its own line.'
447
- Enabled: false
448
-
449
- Style/BlockDelimiters:
450
- Description: >-
451
- Avoid using {...} for multi-line blocks (multiline chaining is
452
- always ugly).
453
- Prefer {...} over do...end for single-line blocks.
454
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#single-line-blocks'
455
- Enabled: false
456
-
457
- Style/BracesAroundHashParameters:
458
- Description: 'Enforce braces style around hash parameters.'
459
- Enabled: false
460
-
461
- Style/CaseEquality:
462
- Description: 'Avoid explicit use of the case equality operator(===).'
463
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-case-equality'
464
- Enabled: false
465
-
466
- Style/CaseIndentation:
467
- Description: 'Indentation of when in a case/when/[else/]end.'
468
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#indent-when-to-case'
469
- Enabled: false
470
-
471
- Style/CharacterLiteral:
472
- Description: 'Checks for uses of character literals.'
473
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-character-literals'
474
- Enabled: false
475
-
476
- Style/ClassAndModuleCamelCase:
477
- Description: 'Use CamelCase for classes and modules.'
478
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#camelcase-classes'
479
- Enabled: false
480
-
481
- Style/ClassAndModuleChildren:
482
- Description: 'Checks style of children classes and modules.'
483
- Enabled: false
484
-
485
- Style/ClassCheck:
486
- Description: 'Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.'
487
- Enabled: false
488
-
489
- Style/ClassMethods:
490
- Description: 'Use self when defining module/class methods.'
491
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#def-self-class-methods'
492
- Enabled: false
493
-
494
- Style/ClassVars:
495
- Description: 'Avoid the use of class variables.'
496
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-class-vars'
497
- Enabled: false
498
-
499
- Style/ClosingParenthesisIndentation:
500
- Description: 'Checks the indentation of hanging closing parentheses.'
501
- Enabled: false
502
-
503
- Style/ColonMethodCall:
504
- Description: 'Do not use :: for method call.'
505
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#double-colons'
506
- Enabled: false
507
-
508
- Style/CommandLiteral:
509
- Description: 'Use `` or %x around command literals.'
510
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-x'
511
- Enabled: false
512
-
513
- Style/CommentAnnotation:
514
- Description: 'Checks formatting of annotation comments.'
515
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#annotate-keywords'
516
- Enabled: false
517
-
518
- Style/CommentIndentation:
519
- Description: 'Indentation of comments.'
520
- Enabled: false
521
-
522
- Style/ConstantName:
523
- Description: 'Constants should use SCREAMING_SNAKE_CASE.'
524
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#screaming-snake-case'
525
- Enabled: false
526
-
527
- Style/DefWithParentheses:
528
- Description: 'Use def with parentheses when there are arguments.'
529
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#method-parens'
530
- Enabled: false
531
-
532
- Style/PreferredHashMethods:
533
- Description: 'Checks for use of deprecated Hash methods.'
534
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-key'
535
- Enabled: false
536
-
537
- Style/Documentation:
538
- Description: 'Document classes and non-namespace modules.'
539
- Enabled: false
540
-
541
- Style/DotPosition:
542
- Description: 'Checks the position of the dot in multi-line method calls.'
543
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains'
544
- Enabled: false
545
-
546
- Style/DoubleNegation:
547
- Description: 'Checks for uses of double negation (!!).'
548
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-bang-bang'
549
- Enabled: false
550
-
551
- Style/EachWithObject:
552
- Description: 'Prefer `each_with_object` over `inject` or `reduce`.'
553
- Enabled: false
554
-
555
- Style/ElseAlignment:
556
- Description: 'Align elses and elsifs correctly.'
557
- Enabled: false
558
-
559
- Style/EmptyElse:
560
- Description: 'Avoid empty else-clauses.'
561
- Enabled: false
562
-
563
- Style/EmptyLineBetweenDefs:
564
- Description: 'Use empty lines between defs.'
565
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#empty-lines-between-methods'
566
- Enabled: false
567
-
568
- Style/EmptyLines:
569
- Description: "Don't use several empty lines in a row."
570
- Enabled: false
571
-
572
- Style/EmptyLinesAroundAccessModifier:
573
- Description: "Keep blank lines around access modifiers."
574
- Enabled: false
575
-
576
- Style/EmptyLinesAroundBlockBody:
577
- Description: "Keeps track of empty lines around block bodies."
578
- Enabled: false
579
-
580
- Style/EmptyLinesAroundClassBody:
581
- Description: "Keeps track of empty lines around class bodies."
582
- Enabled: false
583
-
584
- Style/EmptyLinesAroundModuleBody:
585
- Description: "Keeps track of empty lines around module bodies."
586
- Enabled: false
587
-
588
- Style/EmptyLinesAroundMethodBody:
589
- Description: "Keeps track of empty lines around method bodies."
590
- Enabled: false
591
-
592
- Style/EmptyLiteral:
593
- Description: 'Prefer literals to Array.new/Hash.new/String.new.'
594
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#literal-array-hash'
595
- Enabled: false
596
-
597
- Style/EndBlock:
598
- Description: 'Avoid the use of END blocks.'
599
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-END-blocks'
600
- Enabled: false
601
-
602
- Style/EndOfLine:
603
- Description: 'Use Unix-style line endings.'
604
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#crlf'
605
- Enabled: false
606
-
607
- Style/EvenOdd:
608
- Description: 'Favor the use of Fixnum#even? && Fixnum#odd?'
609
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
610
- Enabled: false
611
-
612
- Style/ExtraSpacing:
613
- Description: 'Do not use unnecessary spacing.'
614
- Enabled: false
615
-
616
- Style/FileName:
617
- Description: 'Use snake_case for source file names.'
618
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-files'
619
- Enabled: false
620
-
621
- Style/InitialIndentation:
622
- Description: >-
623
- Checks the indentation of the first non-blank non-comment line in a file.
624
- Enabled: false
625
-
626
- Style/FirstParameterIndentation:
627
- Description: 'Checks the indentation of the first parameter in a method call.'
628
- Enabled: false
629
-
630
- Style/FlipFlop:
631
- Description: 'Checks for flip flops'
632
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-flip-flops'
633
- Enabled: false
634
-
635
- Style/For:
636
- Description: 'Checks use of for or each in multiline loops.'
637
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-for-loops'
638
- Enabled: false
639
-
640
- Style/FormatString:
641
- Description: 'Enforce the use of Kernel#sprintf, Kernel#format or String#%.'
642
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#sprintf'
643
- Enabled: false
644
-
645
- Style/GlobalVars:
646
- Description: 'Do not introduce global variables.'
647
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#instance-vars'
648
- Reference: 'http://www.zenspider.com/Languages/Ruby/QuickRef.html'
649
- Enabled: false
650
-
651
- Style/GuardClause:
652
- Description: 'Check for conditionals that can be replaced with guard clauses'
653
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
654
- Enabled: false
655
-
656
- Style/HashSyntax:
657
- Description: >-
658
- Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax
659
- { :a => 1, :b => 2 }.
660
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-literals'
661
- Enabled: false
662
-
663
- Style/IfUnlessModifier:
664
- Description: >-
665
- Favor modifier if/unless usage when you have a
666
- single-line body.
667
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier'
668
- Enabled: false
669
-
670
- Style/IfWithSemicolon:
671
- Description: 'Do not use if x; .... Use the ternary operator instead.'
672
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs'
673
- Enabled: false
674
-
675
- Style/IndentationConsistency:
676
- Description: 'Keep indentation straight.'
677
- Enabled: false
678
-
679
- Style/IndentationWidth:
680
- Description: 'Use 2 spaces for indentation.'
681
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
682
- Enabled: false
683
-
684
- Style/IndentArray:
685
- Description: >-
686
- Checks the indentation of the first element in an array
687
- literal.
688
- Enabled: false
689
-
690
- Style/IndentHash:
691
- Description: 'Checks the indentation of the first key in a hash literal.'
692
- Enabled: false
693
-
694
- Style/InfiniteLoop:
695
- Description: 'Use Kernel#loop for infinite loops.'
696
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#infinite-loop'
697
- Enabled: false
698
-
699
- Style/Lambda:
700
- Description: 'Use the new lambda literal syntax for single-line blocks.'
701
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#lambda-multi-line'
702
- Enabled: false
703
-
704
- Style/LambdaCall:
705
- Description: 'Use lambda.call(...) instead of lambda.(...).'
706
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc-call'
707
- Enabled: false
708
-
709
- Style/LeadingCommentSpace:
710
- Description: 'Comments should start with a space.'
711
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#hash-space'
712
- Enabled: false
713
-
714
- Style/LineEndConcatenation:
715
- Description: >-
716
- Use \ instead of + or << to concatenate two string literals at
717
- line end.
718
- Enabled: false
719
-
720
- Style/MethodCallParentheses:
721
- Description: 'Do not use parentheses for method calls with no arguments.'
722
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-args-no-parens'
723
- Enabled: false
724
-
725
- Style/MethodDefParentheses:
726
- Description: >-
727
- Checks if the method definitions have or don't have
728
- parentheses.
729
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#method-parens'
730
- Enabled: false
731
-
732
- Style/MethodName:
733
- Description: 'Use the configured style when naming methods.'
734
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars'
735
- Enabled: false
736
-
737
- Style/ModuleFunction:
738
- Description: 'Checks for usage of `extend self` in modules.'
739
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#module-function'
740
- Enabled: false
741
-
742
- Style/MultilineBlockChain:
743
- Description: 'Avoid multi-line chains of blocks.'
744
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#single-line-blocks'
745
- Enabled: false
746
-
747
- Style/MultilineBlockLayout:
748
- Description: 'Ensures newlines after multiline block do statements.'
749
- Enabled: false
750
-
751
- Style/MultilineIfThen:
752
- Description: 'Do not use then for multi-line if/unless.'
753
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-then'
754
- Enabled: false
755
-
756
- Style/MultilineOperationIndentation:
757
- Description: >-
758
- Checks indentation of binary operations that span more than
759
- one line.
760
- Enabled: false
761
-
762
- Style/MultilineTernaryOperator:
763
- Description: >-
764
- Avoid multi-line ?: (the ternary operator);
765
- use if/unless instead.
766
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-multiline-ternary'
767
- Enabled: false
768
-
769
- Style/NegatedIf:
770
- Description: >-
771
- Favor unless over if for negative conditions
772
- (or control flow or).
773
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#unless-for-negatives'
774
- Enabled: false
775
-
776
- Style/NegatedWhile:
777
- Description: 'Favor until over while for negative conditions.'
778
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#until-for-negatives'
779
- Enabled: false
780
-
781
- Style/NestedTernaryOperator:
782
- Description: 'Use one expression per branch in a ternary operator.'
783
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-ternary'
784
- Enabled: false
785
-
786
- Style/Next:
787
- Description: 'Use `next` to skip iteration instead of a condition at the end.'
788
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals'
789
- Enabled: false
790
-
791
- Style/NilComparison:
792
- Description: 'Prefer x.nil? to x == nil.'
793
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#predicate-methods'
794
- Enabled: false
795
-
796
- Style/NonNilCheck:
797
- Description: 'Checks for redundant nil checks.'
798
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-non-nil-checks'
799
- Enabled: false
800
-
801
- Style/Not:
802
- Description: 'Use ! instead of not.'
803
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bang-not-not'
804
- Enabled: false
805
-
806
- Style/NumericLiterals:
807
- Description: >-
808
- Add underscores to large numeric literals to improve their
809
- readability.
810
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics'
811
- Enabled: false
812
-
813
- Style/OneLineConditional:
814
- Description: >-
815
- Favor the ternary operator(?:) over
816
- if/then/else/end constructs.
817
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#ternary-operator'
818
- Enabled: false
819
-
820
- Style/OpMethod:
821
- Description: 'When defining binary operators, name the argument other.'
822
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#other-arg'
823
- Enabled: false
824
-
825
- Style/OptionalArguments:
826
- Description: >-
827
- Checks for optional arguments that do not appear at the end
828
- of the argument list
829
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#optional-arguments'
830
- Enabled: false
831
-
832
- Style/ParallelAssignment:
833
- Description: >-
834
- Check for simple usages of parallel assignment.
835
- It will only warn when the number of variables
836
- matches on both sides of the assignment.
837
- This also provides performance benefits
838
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parallel-assignment'
839
- Enabled: false
840
-
841
- Style/ParenthesesAroundCondition:
842
- Description: >-
843
- Don't use parentheses around the condition of an
844
- if/unless/while.
845
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-parens-if'
846
- Enabled: false
847
-
848
- Style/PercentLiteralDelimiters:
849
- Description: 'Use `%`-literal delimiters consistently'
850
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-literal-braces'
851
- Enabled: false
852
-
853
- Style/PercentQLiterals:
854
- Description: 'Checks if uses of %Q/%q match the configured preference.'
855
- Enabled: false
856
-
857
- Style/PerlBackrefs:
858
- Description: 'Avoid Perl-style regex back references.'
859
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers'
860
- Enabled: false
861
-
862
- Style/PredicateName:
863
- Description: 'Check the names of predicate methods.'
864
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark'
865
- Enabled: false
866
-
867
- Style/Proc:
868
- Description: 'Use proc instead of Proc.new.'
869
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#proc'
870
- Enabled: false
871
-
872
- Style/RaiseArgs:
873
- Description: 'Checks the arguments passed to raise/fail.'
874
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#exception-class-messages'
875
- Enabled: false
876
-
877
- Style/RedundantBegin:
878
- Description: "Don't use begin blocks when they are not needed."
879
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#begin-implicit'
880
- Enabled: false
881
-
882
- Style/RedundantException:
883
- Description: "Checks for an obsolete RuntimeException argument in raise/fail."
884
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-explicit-runtimeerror'
885
- Enabled: false
886
-
887
- Style/RedundantReturn:
888
- Description: "Don't use return where it's not required."
889
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-explicit-return'
890
- Enabled: false
891
-
892
- Style/RedundantSelf:
893
- Description: "Don't use self where it's not needed."
894
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-self-unless-required'
895
- Enabled: false
896
-
897
- Style/RegexpLiteral:
898
- Description: 'Use / or %r around regular expressions.'
899
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-r'
900
- Enabled: false
901
-
902
- Style/RescueEnsureAlignment:
903
- Description: 'Align rescues and ensures correctly.'
904
- Enabled: false
905
-
906
- Style/RescueModifier:
907
- Description: 'Avoid using rescue in its modifier form.'
908
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-rescue-modifiers'
909
- Enabled: false
910
-
911
- Style/SelfAssignment:
912
- Description: >-
913
- Checks for places where self-assignment shorthand should have
914
- been used.
915
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#self-assignment'
916
- Enabled: false
917
-
918
- Style/Semicolon:
919
- Description: "Don't use semicolons to terminate expressions."
920
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-semicolon'
921
- Enabled: false
922
-
923
- Style/SignalException:
924
- Description: 'Checks for proper usage of fail and raise.'
925
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#fail-method'
926
- Enabled: false
927
-
928
- Style/SingleLineBlockParams:
929
- Description: 'Enforces the names of some block params.'
930
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#reduce-blocks'
931
- Enabled: false
932
-
933
- Style/SingleLineMethods:
934
- Description: 'Avoid single-line methods.'
935
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-single-line-methods'
936
- Enabled: false
937
-
938
- Style/SpaceBeforeFirstArg:
939
- Description: >-
940
- Checks that exactly one space is used between a method name
941
- and the first argument for method calls without parentheses.
942
- Enabled: true
943
-
944
- Style/SpaceAfterColon:
945
- Description: 'Use spaces after colons.'
946
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
947
- Enabled: false
948
-
949
- Style/SpaceAfterComma:
950
- Description: 'Use spaces after commas.'
951
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
952
- Enabled: false
953
-
954
- Style/SpaceAroundKeyword:
955
- Description: 'Use spaces around keywords.'
956
- Enabled: false
957
-
958
- Style/SpaceAfterMethodName:
959
- Description: >-
960
- Do not put a space between a method name and the opening
961
- parenthesis in a method definition.
962
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#parens-no-spaces'
963
- Enabled: false
964
-
965
- Style/SpaceAfterNot:
966
- Description: Tracks redundant space after the ! operator.
967
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-space-bang'
968
- Enabled: false
969
-
970
- Style/SpaceAfterSemicolon:
971
- Description: 'Use spaces after semicolons.'
972
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
973
- Enabled: false
974
-
975
- Style/SpaceBeforeBlockBraces:
976
- Description: >-
977
- Checks that the left block brace has or doesn't have space
978
- before it.
979
- Enabled: false
980
-
981
- Style/SpaceBeforeComma:
982
- Description: 'No spaces before commas.'
983
- Enabled: false
984
-
985
- Style/SpaceBeforeComment:
986
- Description: >-
987
- Checks for missing space between code and a comment on the
988
- same line.
989
- Enabled: false
990
-
991
- Style/SpaceBeforeSemicolon:
992
- Description: 'No spaces before semicolons.'
993
- Enabled: false
994
-
995
- Style/SpaceInsideBlockBraces:
996
- Description: >-
997
- Checks that block braces have or don't have surrounding space.
998
- For blocks taking parameters, checks that the left brace has
999
- or doesn't have trailing space.
1000
- Enabled: false
1001
-
1002
- Style/SpaceAroundBlockParameters:
1003
- Description: 'Checks the spacing inside and after block parameters pipes.'
1004
- Enabled: false
1005
-
1006
- Style/SpaceAroundEqualsInParameterDefault:
1007
- Description: >-
1008
- Checks that the equals signs in parameter default assignments
1009
- have or don't have surrounding space depending on
1010
- configuration.
1011
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-around-equals'
1012
- Enabled: false
1013
-
1014
- Style/SpaceAroundOperators:
1015
- Description: 'Use a single space around operators.'
1016
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
1017
- Enabled: false
1018
-
1019
- Style/SpaceInsideBrackets:
1020
- Description: 'No spaces after [ or before ].'
1021
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-spaces-braces'
1022
- Enabled: false
1023
-
1024
- Style/SpaceInsideHashLiteralBraces:
1025
- Description: "Use spaces inside hash literal braces - or don't."
1026
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-operators'
1027
- Enabled: false
1028
-
1029
- Style/SpaceInsideParens:
1030
- Description: 'No spaces after ( or before ).'
1031
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-spaces-braces'
1032
- Enabled: false
1033
-
1034
- Style/SpaceInsideRangeLiteral:
1035
- Description: 'No spaces inside range literals.'
1036
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-space-inside-range-literals'
1037
- Enabled: false
1038
-
1039
- Style/SpaceInsideStringInterpolation:
1040
- Description: 'Checks for padding/surrounding spaces inside string interpolation.'
1041
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#string-interpolation'
1042
- Enabled: false
1043
-
1044
- Style/SpecialGlobalVars:
1045
- Description: 'Avoid Perl-style global variables.'
1046
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms'
1047
- Enabled: false
1048
-
1049
- Style/StringLiterals:
1050
- Description: 'Checks if uses of quotes match the configured preference.'
1051
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
1052
- Enabled: false
1053
-
1054
- Style/StringLiteralsInInterpolation:
1055
- Description: >-
1056
- Checks if uses of quotes inside expressions in interpolated
1057
- strings match the configured preference.
1058
- Enabled: false
1059
-
1060
- Style/StructInheritance:
1061
- Description: 'Checks for inheritance from Struct.new.'
1062
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-extend-struct-new'
1063
- Enabled: false
1064
-
1065
- Style/SymbolLiteral:
1066
- Description: 'Use plain symbols instead of string symbols when possible.'
1067
- Enabled: false
1068
-
1069
- Style/SymbolProc:
1070
- Description: 'Use symbols as procs instead of blocks when possible.'
1071
- Enabled: false
1072
-
1073
- Style/Tab:
1074
- Description: 'No hard tabs.'
1075
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#spaces-indentation'
1076
- Enabled: false
1077
-
1078
- Style/TrailingBlankLines:
1079
- Description: 'Checks trailing blank lines and final newline.'
1080
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#newline-eof'
1081
- Enabled: false
1082
-
1083
- Style/TrailingCommaInArguments:
1084
- Description: 'Checks for trailing comma in parameter lists.'
1085
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-params-comma'
1086
- Enabled: false
1087
-
1088
- Style/TrailingCommaInLiteral:
1089
- Description: 'Checks for trailing comma in literals.'
1090
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-array-commas'
1091
- Enabled: false
1092
-
1093
- Style/TrailingWhitespace:
1094
- Description: 'Avoid trailing whitespace.'
1095
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-trailing-whitespace'
1096
- Enabled: false
1097
-
1098
- Style/TrivialAccessors:
1099
- Description: 'Prefer attr_* methods to trivial readers/writers.'
1100
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#attr_family'
1101
- Enabled: false
1102
-
1103
- Style/UnlessElse:
1104
- Description: >-
1105
- Do not use unless with else. Rewrite these with the positive
1106
- case first.
1107
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-else-with-unless'
1108
- Enabled: false
1109
-
1110
- Style/UnneededCapitalW:
1111
- Description: 'Checks for %W when interpolation is not needed.'
1112
- Enabled: false
1113
-
1114
- Style/UnneededPercentQ:
1115
- Description: 'Checks for %q/%Q when single quotes or double quotes would do.'
1116
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-q'
1117
- Enabled: false
1118
-
1119
- Style/TrailingUnderscoreVariable:
1120
- Description: >-
1121
- Checks for the usage of unneeded trailing underscores at the
1122
- end of parallel variable assignment.
1123
- Enabled: false
1124
-
1125
- Style/VariableInterpolation:
1126
- Description: >-
1127
- Don't interpolate global, instance and class variables
1128
- directly in strings.
1129
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#curlies-interpolate'
1130
- Enabled: false
1131
-
1132
- Style/VariableName:
1133
- Description: 'Use the configured style when naming variables.'
1134
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars'
1135
- Enabled: false
1136
-
1137
- Style/WhenThen:
1138
- Description: 'Use when x then ... for one-line cases.'
1139
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#one-line-cases'
1140
- Enabled: false
1141
-
1142
- Style/WhileUntilDo:
1143
- Description: 'Checks for redundant do after while or until.'
1144
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-multiline-while-do'
1145
- Enabled: false
1146
-
1147
- Style/WhileUntilModifier:
1148
- Description: >-
1149
- Favor modifier while/until usage when you have a
1150
- single-line body.
1151
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier'
1152
- Enabled: false
1153
-
1154
- Style/WordArray:
1155
- Description: 'Use %w or %W for arrays of words.'
1156
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
2
+ TargetRubyVersion: 2.6.2
3
+ Style/FrozenStringLiteralComment:
1157
4
  Enabled: false
@@ -4,7 +4,7 @@ env:
4
4
  - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
5
5
  language: ruby
6
6
  rvm:
7
- - 2.5.1
7
+ - 2.6.2
8
8
  before_script:
9
9
  - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
10
10
  - chmod +x ./cc-test-reporter
@@ -54,16 +54,20 @@ class Scopable
54
54
 
55
55
  # Enforce 'if' option.
56
56
  if options[:if]
57
- next relation unless delegator(relation, value, params).instance_exec(&options[:if])
57
+ unless delegator(relation, value, params).instance_exec(&options[:if])
58
+ next relation
59
+ end
58
60
  end
59
61
 
60
62
  # Enforce 'unless' option.
61
63
  if options[:unless]
62
- next relation if delegator(relation, value, params).instance_exec(&options[:unless])
64
+ if delegator(relation, value, params).instance_exec(&options[:unless])
65
+ next relation
66
+ end
63
67
  end
64
68
 
65
69
  # Bail if the value is false or nil.
66
- next relation if !value
70
+ next relation unless value
67
71
 
68
72
  # When a block is present, use that, otherwise call the scope method.
69
73
  if options[:block].present?
@@ -1,3 +1,3 @@
1
1
  class Scopable
2
- VERSION = '2.1.0'.freeze
2
+ VERSION = '2.1.1'.freeze
3
3
  end
@@ -1,5 +1,4 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path('lib', __dir__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
3
  require 'scopable/version'
5
4
 
@@ -20,11 +19,11 @@ Gem::Specification.new do |spec|
20
19
 
21
20
  spec.required_ruby_version = '>= 2.2.2'
22
21
 
23
- spec.add_runtime_dependency 'activesupport', '~> 5.0'
22
+ spec.add_runtime_dependency 'activesupport', '>= 5.0'
24
23
 
25
- spec.add_development_dependency 'bundler', '~> 1.15'
26
- spec.add_development_dependency 'rake', '~> 12.0'
24
+ spec.add_development_dependency 'bundler', '~> 2.0'
27
25
  spec.add_development_dependency 'minitest', '~> 5.10'
26
+ spec.add_development_dependency 'rake', '~> 13.0'
28
27
  spec.add_development_dependency 'rubocop', '~> 0.49'
29
28
  spec.add_development_dependency 'simplecov', '~> 0.14'
30
29
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scopable
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arthur Corenzan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-19 00:00:00.000000000 Z
11
+ date: 2019-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '5.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '5.0'
27
27
  - !ruby/object:Gem::Dependency
@@ -30,42 +30,42 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.15'
33
+ version: '2.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.15'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rake
42
+ name: minitest
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '12.0'
47
+ version: '5.10'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '12.0'
54
+ version: '5.10'
55
55
  - !ruby/object:Gem::Dependency
56
- name: minitest
56
+ name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '5.10'
61
+ version: '13.0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '5.10'
68
+ version: '13.0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -134,8 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  - !ruby/object:Gem::Version
135
135
  version: '0'
136
136
  requirements: []
137
- rubyforge_project:
138
- rubygems_version: 2.7.6
137
+ rubygems_version: 3.0.3
139
138
  signing_key:
140
139
  specification_version: 4
141
140
  summary: Easy parametric query building in Rails.