ajax-datatables-rails 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +23 -1132
  3. data/.travis.yml +36 -24
  4. data/Appraisals +14 -8
  5. data/CHANGELOG.md +32 -7
  6. data/Gemfile +2 -0
  7. data/README.md +400 -335
  8. data/Rakefile +2 -1
  9. data/ajax-datatables-rails.gemspec +8 -6
  10. data/doc/webpack.md +50 -0
  11. data/gemfiles/{rails_4.1.15.gemfile → rails_4.1.16.gemfile} +1 -1
  12. data/gemfiles/{rails_4.2.8.gemfile → rails_4.2.10.gemfile} +2 -1
  13. data/gemfiles/{rails_5.0.3.gemfile → rails_5.0.7.gemfile} +1 -1
  14. data/gemfiles/{rails_5.1.1.gemfile → rails_5.1.6.gemfile} +1 -1
  15. data/gemfiles/rails_5.2.0.gemfile +13 -0
  16. data/lib/ajax-datatables-rails.rb +3 -11
  17. data/lib/ajax-datatables-rails/base.rb +44 -24
  18. data/lib/ajax-datatables-rails/config.rb +3 -0
  19. data/lib/ajax-datatables-rails/datatable/column.rb +33 -125
  20. data/lib/ajax-datatables-rails/datatable/column/date_filter.rb +77 -0
  21. data/lib/ajax-datatables-rails/datatable/column/order.rb +29 -0
  22. data/lib/ajax-datatables-rails/datatable/column/search.rb +88 -0
  23. data/lib/ajax-datatables-rails/datatable/datatable.rb +10 -7
  24. data/lib/ajax-datatables-rails/datatable/simple_order.rb +17 -2
  25. data/lib/ajax-datatables-rails/datatable/simple_search.rb +3 -0
  26. data/lib/ajax-datatables-rails/orm/active_record.rb +14 -5
  27. data/lib/ajax-datatables-rails/version.rb +3 -1
  28. data/lib/ajax_datatables_rails.rb +15 -0
  29. data/lib/generators/datatable/config_generator.rb +2 -0
  30. data/lib/generators/datatable/templates/ajax_datatables_rails_config.rb +5 -0
  31. data/lib/generators/rails/datatable_generator.rb +6 -5
  32. data/lib/generators/rails/templates/datatable.rb +1 -15
  33. data/spec/ajax-datatables-rails/base_spec.rb +23 -26
  34. data/spec/ajax-datatables-rails/datatable/column_spec.rb +68 -23
  35. data/spec/ajax-datatables-rails/datatable/datatable_spec.rb +1 -1
  36. data/spec/ajax-datatables-rails/datatable/simple_order_spec.rb +29 -2
  37. data/spec/ajax-datatables-rails/datatable/simple_search_spec.rb +1 -1
  38. data/spec/ajax-datatables-rails/extended_spec.rb +3 -3
  39. data/spec/ajax-datatables-rails/orm/active_record_filter_records_spec.rb +94 -35
  40. data/spec/ajax-datatables-rails/orm/active_record_paginate_records_spec.rb +6 -6
  41. data/spec/ajax-datatables-rails/orm/active_record_sort_records_spec.rb +43 -0
  42. data/spec/ajax-datatables-rails/orm/active_record_spec.rb +1 -1
  43. data/spec/factories/user.rb +1 -1
  44. data/spec/install_oracle.sh +2 -2
  45. data/spec/spec_helper.rb +8 -3
  46. data/spec/support/datatable_cond_date.rb +5 -0
  47. data/spec/support/datatable_cond_numeric.rb +41 -0
  48. data/spec/support/datatable_cond_proc.rb +11 -0
  49. data/spec/support/datatable_cond_string.rb +23 -0
  50. data/spec/support/datatable_order_nulls_last.rb +5 -0
  51. data/spec/support/test_helpers.rb +13 -88
  52. metadata +28 -13
  53. data/lib/ajax-datatables-rails/datatable/column_date_filter.rb +0 -41
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: eaa112d6f9390dc1b53c46034b84e43d388dfac4
4
- data.tar.gz: b3fcb7e5cdfe3c525221cd2ca9f6a24c0b405e9c
2
+ SHA256:
3
+ metadata.gz: e0e67f285cdb991efbf4ab474b3a7fff772c37a546637f004bc57bf71a3402af
4
+ data.tar.gz: c599a40dde96f2244e0645900d48366ea0624b16502944b5ba2256698725c707
5
5
  SHA512:
6
- metadata.gz: f9a66aa697ace2f1b6f2bb9156ba1f5aa37056eeb7d47e528e7cc4fc4d39dc642869ca647c5df04493492eb53229505b24c23a680f925157efa0a16bdd4417ef
7
- data.tar.gz: b4f1791aa4dc7e232abdc9257a0412cd6146dd94b26982215a3ac0ab729e4fb2ce2b68a083f17bf2c668f5ed46b3431c7f9cd069fc28b6416c5607c9071866ab
6
+ metadata.gz: c33dc7544a72a23c02524bd8b1480dcf903d2a28076411e762a1af68a2a644b288f48d7aba19a25eb0774db2277807b0911b612ef023bdf04cb8e985ff85869c
7
+ data.tar.gz: 67d1e16bdb6ea901614234e30690cd8a42bcc3edfd70099c85857ae4e1aa70736594cbbcfda5e0aba9459a59b08ce43a29e18ac471244880aa882cad5b49470c
@@ -1,1157 +1,48 @@
1
1
  AllCops:
2
- DisabledByDefault: true
2
+ TargetRubyVersion: 2.5
3
+ Exclude:
4
+ - spec/**/*.rb
5
+ - lib/ajax-datatables-rails.rb
6
+ - lib/generators/rails/templates/*.rb
3
7
 
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: 7
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_.
8
+ Documentation:
378
9
  Enabled: false
379
10
 
380
- Style/Alias:
381
- Description: 'Use alias_method instead of alias.'
382
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#alias-method'
11
+ Gemspec/OrderedDependencies:
383
12
  Enabled: false
384
13
 
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'
14
+ Layout/EmptyLines:
390
15
  Enabled: false
391
16
 
392
- Style/AlignHash:
393
- Description: >-
394
- Align the elements of a hash literal if they span more than
395
- one line.
17
+ Layout/EmptyLinesAroundClassBody:
396
18
  Enabled: false
397
19
 
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'
20
+ Layout/EmptyLinesAroundBlockBody:
403
21
  Enabled: false
404
22
 
405
- Style/AndOr:
406
- Description: 'Use &&/|| instead of and/or.'
407
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#no-and-or-or'
23
+ Layout/EmptyLinesAroundModuleBody:
408
24
  Enabled: false
409
25
 
410
- Style/ArrayJoin:
411
- Description: 'Use Array#join instead of Array#*.'
412
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#array-join'
26
+ Layout/EmptyLineBetweenDefs:
413
27
  Enabled: false
414
28
 
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
29
+ Metrics/CyclomaticComplexity:
30
+ Max: 7
1124
31
 
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'
32
+ Metrics/LineLength:
1130
33
  Enabled: false
1131
34
 
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
35
+ Metrics/BlockLength:
36
+ Max: 30
1136
37
 
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
38
+ Metrics/MethodLength:
39
+ Max: 15
1141
40
 
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
41
+ Metrics/ClassLength:
42
+ Max: 130
1146
43
 
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'
44
+ Naming/AccessorMethodName:
1152
45
  Enabled: false
1153
46
 
1154
- Style/WordArray:
1155
- Description: 'Use %w or %W for arrays of words.'
1156
- StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#percent-w'
47
+ Style/NumericPredicate:
1157
48
  Enabled: false