simplecov-material 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +286 -0
  3. data/.circleci/setup-rubygems.sh +3 -0
  4. data/.codeclimate.json +86 -0
  5. data/.eslintignore +1 -0
  6. data/.eslintrc.yml +25 -0
  7. data/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  8. data/.github/ISSUE_TEMPLATE/feature-request.md +20 -0
  9. data/.github/ISSUE_TEMPLATE/question.md +10 -0
  10. data/.github/PULL_REQUEST_TEMPLATE.md +32 -0
  11. data/.gitignore +12 -0
  12. data/.rubocop.yml +884 -0
  13. data/.stylelintignore +1 -0
  14. data/.stylelintrc +48 -0
  15. data/CHANGELOG.md +13 -0
  16. data/CODE_OF_CONDUCT.md +74 -0
  17. data/CONTRIBUTING.md +132 -0
  18. data/Gemfile +19 -0
  19. data/LICENSE +21 -0
  20. data/README.md +84 -0
  21. data/Rakefile +12 -0
  22. data/bin/console +12 -0
  23. data/bin/publish +82 -0
  24. data/bin/setup +6 -0
  25. data/dist/app.js +8 -0
  26. data/dist/app.scss +11 -0
  27. data/dist/scripts/dialog.js +8 -0
  28. data/dist/scripts/forms.js +13 -0
  29. data/dist/scripts/list.js +8 -0
  30. data/dist/scripts/navigation.js +14 -0
  31. data/dist/scripts/ripple.js +18 -0
  32. data/dist/scripts/table.js +18 -0
  33. data/dist/scripts/timeago.js +3 -0
  34. data/dist/scripts/topbar.js +5 -0
  35. data/dist/styles/dialog.scss +191 -0
  36. data/dist/styles/main.scss +141 -0
  37. data/dist/styles/table.scss +136 -0
  38. data/lib/simplecov-material.rb +123 -0
  39. data/lib/simplecov-material/version.rb +9 -0
  40. data/package.json +66 -0
  41. data/public/application.css +11083 -0
  42. data/public/application.js +936 -0
  43. data/public/fonts/0509ab09c1b0d2200a4135803c91d6ce.woff2 +0 -0
  44. data/public/fonts/29b882f018fa6fe75fd338aaae6235b8.woff +0 -0
  45. data/public/fonts/96c476804d7a788cc1c05351b287ee41.eot +0 -0
  46. data/public/fonts/da4ea5cdfca6b3baab285741f5ccb59f.ttf +0 -0
  47. data/simplecov-material.gemspec +32 -0
  48. data/test/fixtures/app/controllers/sample_controller.rb +12 -0
  49. data/test/fixtures/app/models/user.rb +12 -0
  50. data/test/fixtures/sample.rb +12 -0
  51. data/test/simplecov-material/simplecov_material_test.rb +40 -0
  52. data/test/test_helper.rb +17 -0
  53. data/views/dialog.erb +51 -0
  54. data/views/group_page.erb +110 -0
  55. data/views/main.erb +90 -0
  56. data/webpack.config.js +81 -0
  57. data/yarn.lock +6973 -0
  58. metadata +127 -0
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Suggest an idea for this project
4
+ title: Feature Request
5
+ labels: enhancement, new
6
+ assignees: chiefpansancolt
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,10 @@
1
+ ---
2
+ name: Question
3
+ about: Ask a question to the group
4
+ title: Question
5
+ labels: new, question
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+
@@ -0,0 +1,32 @@
1
+ # Description
2
+
3
+ Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
4
+
5
+ Fixes # (issue)
6
+
7
+ ## Type of change
8
+
9
+ Please delete options that are not relevant.
10
+
11
+ - [ ] Bug fix (non-breaking change which fixes an issue)
12
+ - [ ] New feature (non-breaking change which adds functionality)
13
+ - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
14
+ - [ ] This change requires a documentation update
15
+
16
+ # How Has This Been Tested?
17
+
18
+ Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
19
+
20
+ - [ ] Test A
21
+ - [ ] Test B
22
+
23
+ # Checklist:
24
+
25
+ - [ ] My code follows the style guidelines of this project
26
+ - [ ] I have performed a self-review of my own code
27
+ - [ ] I have commented my code, particularly in hard-to-understand areas
28
+ - [ ] I have made corresponding changes to the documentation
29
+ - [ ] My changes generate no new warnings
30
+ - [ ] I have added tests that prove my fix is effective or that my feature works
31
+ - [ ] New and existing unit tests pass locally with my changes
32
+ - [ ] Any dependent changes have been merged and published in downstream modules
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /node_modules/
10
+ Gemfile.lock
11
+ yarn-error.log
12
+ test/reports/
@@ -0,0 +1,884 @@
1
+ ---
2
+ require:
3
+ - rubocop-performance
4
+
5
+ AllCops:
6
+ RubyInterpreters:
7
+ - ruby
8
+ - rake
9
+ # Include common Ruby source files.
10
+ Include:
11
+ - '**/*.rb'
12
+ - '**/*.arb'
13
+ - '**/*.axlsx'
14
+ - '**/*.builder'
15
+ - '**/*.fcgi'
16
+ - '**/*.gemfile'
17
+ - '**/*.gemspec'
18
+ - '**/*.god'
19
+ - '**/*.jb'
20
+ - '**/*.jbuilder'
21
+ - '**/*.mspec'
22
+ - '**/*.opal'
23
+ - '**/*.pluginspec'
24
+ - '**/*.podspec'
25
+ - '**/*.rabl'
26
+ - '**/*.rake'
27
+ - '**/*.rbuild'
28
+ - '**/*.rbw'
29
+ - '**/*.rbx'
30
+ - '**/*.ru'
31
+ - '**/*.ruby'
32
+ - '**/*.spec'
33
+ - '**/*.thor'
34
+ - '**/*.watchr'
35
+ - '**/.irbrc'
36
+ - '**/.pryrc'
37
+ - '**/buildfile'
38
+ - '**/Appraisals'
39
+ - '**/Berksfile'
40
+ - '**/Brewfile'
41
+ - '**/Buildfile'
42
+ - '**/Capfile'
43
+ - '**/Cheffile'
44
+ - '**/Dangerfile'
45
+ - '**/Deliverfile'
46
+ - '**/Fastfile'
47
+ - '**/*Fastfile'
48
+ - '**/Gemfile'
49
+ - '**/Guardfile'
50
+ - '**/Jarfile'
51
+ - '**/Mavenfile'
52
+ - '**/Podfile'
53
+ - '**/Puppetfile'
54
+ - '**/Rakefile'
55
+ - '**/Snapfile'
56
+ - '**/Thorfile'
57
+ - '**/Vagabondfile'
58
+ - '**/Vagrantfile'
59
+ Exclude:
60
+ - 'node_modules/**/*'
61
+ - 'vendor/**/*'
62
+ - '.git/**/*'
63
+ - 'bin/bundle'
64
+ DefaultFormatter: progress
65
+ DisplayCopNames: true
66
+ DisplayStyleGuide: false
67
+ StyleGuideBaseURL: https://rubystyle.guide
68
+ ExtraDetails: false
69
+ StyleGuideCopsOnly: false
70
+ EnabledByDefault: false
71
+ DisabledByDefault: false
72
+ UseCache: true
73
+ MaxFilesInCache: 20000
74
+ CacheRootDirectory: ~
75
+ AllowSymlinksInCacheRootDirectory: false
76
+ TargetRubyVersion: 2.6
77
+
78
+ Style/MixinUsage:
79
+ Enabled: false
80
+ Lint/AmbiguousOperator:
81
+ Description: Checks for ambiguous operators in the first argument of a method invocation
82
+ without parentheses.
83
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#parens-as-args
84
+ Enabled: true
85
+ Lint/AmbiguousBlockAssociation:
86
+ Enabled: false
87
+ Lint/AmbiguousRegexpLiteral:
88
+ Description: Checks for ambiguous regexp literals in the first argument of a method
89
+ invocation without parenthesis.
90
+ Enabled: true
91
+ Lint/AssignmentInCondition:
92
+ Description: Don't use assignment in conditions.
93
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#safe-assignment-in-condition
94
+ Enabled: true
95
+ Layout/BlockAlignment:
96
+ Description: Align block ends correctly.
97
+ Enabled: true
98
+ Lint/CircularArgumentReference:
99
+ Description: Don't refer to the keyword argument in the default value.
100
+ Enabled: true
101
+ Layout/ConditionPosition:
102
+ Description: Checks for condition placed in a confusing position relative to the
103
+ keyword.
104
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#same-line-condition
105
+ Enabled: true
106
+ Lint/Debugger:
107
+ Description: Check for debugger calls.
108
+ Enabled: true
109
+ Layout/DefEndAlignment:
110
+ Description: Align ends corresponding to defs correctly.
111
+ Enabled: true
112
+ Lint/DeprecatedClassMethods:
113
+ Description: Check for deprecated class method calls.
114
+ Enabled: true
115
+ Lint/DuplicateMethods:
116
+ Description: Check for duplicate methods calls.
117
+ Enabled: true
118
+ Lint/EachWithObjectArgument:
119
+ Description: Check for immutable argument given to each_with_object.
120
+ Enabled: true
121
+ Lint/ElseLayout:
122
+ Description: Check for odd code arrangement in an else block.
123
+ Enabled: true
124
+ Lint/EmptyEnsure:
125
+ Description: Checks for empty ensure block.
126
+ Enabled: true
127
+ Lint/EmptyInterpolation:
128
+ Description: Checks for empty string interpolation.
129
+ Enabled: true
130
+ Layout/EndAlignment:
131
+ Description: Align ends correctly.
132
+ Enabled: true
133
+ Lint/EndInMethod:
134
+ Description: END blocks should not be placed inside method definitions.
135
+ Enabled: true
136
+ Lint/EnsureReturn:
137
+ Description: Do not use return in an ensure block.
138
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-return-ensure
139
+ Enabled: true
140
+ Lint/FormatParameterMismatch:
141
+ Description: The number of parameters to format/sprint must match the fields.
142
+ Enabled: true
143
+ Lint/HandleExceptions:
144
+ Description: Don't suppress exception.
145
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#dont-hide-exceptions
146
+ Enabled: true
147
+ Lint/LiteralInInterpolation:
148
+ Description: Checks for literals used in interpolation.
149
+ Enabled: true
150
+ Lint/Loop:
151
+ Description: Use Kernel#loop with break rather than begin/end/until or begin/end/while
152
+ for post-loop tests.
153
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#loop-with-break
154
+ Enabled: true
155
+ Lint/NestedMethodDefinition:
156
+ Description: Do not use nested method definitions.
157
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-nested-methods
158
+ Enabled: true
159
+ Lint/NonLocalExitFromIterator:
160
+ Description: Do not use return in iterator to cause non-local exit.
161
+ Enabled: true
162
+ Lint/ParenthesesAsGroupedExpression:
163
+ Description: Checks for method calls with a space before the opening parenthesis.
164
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#parens-no-spaces
165
+ Enabled: true
166
+ Lint/RequireParentheses:
167
+ Description: Use parentheses in the method call to avoid confusion about precedence.
168
+ Enabled: true
169
+ Lint/RescueException:
170
+ Description: Avoid rescuing the Exception class.
171
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-blind-rescues
172
+ Enabled: true
173
+ Lint/ShadowingOuterLocalVariable:
174
+ Description: Do not use the same name as outer local variable for block arguments
175
+ or block local variables.
176
+ Enabled: true
177
+ Lint/StringConversionInInterpolation:
178
+ Description: Checks for Object#to_s usage in string interpolation.
179
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-to-s
180
+ Enabled: true
181
+ Lint/UnderscorePrefixedVariableName:
182
+ Description: Do not use prefix `_` for a variable that is used.
183
+ Enabled: true
184
+ Lint/UnusedBlockArgument:
185
+ Description: Checks for unused block arguments.
186
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars
187
+ Enabled: true
188
+ Lint/UnusedMethodArgument:
189
+ Description: Checks for unused method arguments.
190
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars
191
+ Enabled: true
192
+ Lint/UnreachableCode:
193
+ Description: Unreachable code.
194
+ Enabled: true
195
+ Lint/UselessAccessModifier:
196
+ Description: Checks for useless access modifiers.
197
+ Enabled: true
198
+ Lint/UselessAssignment:
199
+ Description: Checks for useless assignment to a local variable.
200
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars
201
+ Enabled: true
202
+ Lint/UselessComparison:
203
+ Description: Checks for comparison of something with itself.
204
+ Enabled: true
205
+ Lint/UselessElseWithoutRescue:
206
+ Description: Checks for useless `else` in `begin..end` without `rescue`.
207
+ Enabled: true
208
+ Lint/UselessSetterCall:
209
+ Description: Checks for useless setter call to a local variable.
210
+ Enabled: true
211
+ Lint/Void:
212
+ Description: Possible use of operator/literal/variable in void context.
213
+ Enabled: true
214
+ Metrics/AbcSize:
215
+ Description: A calculated magnitude based on number of assignments, branches, and
216
+ conditions.
217
+ Reference: http://c2.com/cgi/wiki?AbcMetric
218
+ Enabled: true
219
+ Max: 15
220
+ Metrics/BlockNesting:
221
+ Description: Avoid excessive block nesting
222
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count
223
+ Enabled: true
224
+ Max: 4
225
+ Metrics/ClassLength:
226
+ Description: Avoid classes longer than 100 lines of code.
227
+ Enabled: true
228
+ Max: 100
229
+ Metrics/CyclomaticComplexity:
230
+ Description: A complexity metric that is strongly correlated to the number of test
231
+ cases needed to validate a method.
232
+ Enabled: true
233
+ Metrics/LineLength:
234
+ Description: Limit lines to 80 characters.
235
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#80-character-limits
236
+ Enabled: true
237
+ Exclude:
238
+ - "**/*.gemspec"
239
+ Metrics/MethodLength:
240
+ Description: Avoid methods longer than 10 lines of code.
241
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#short-methods
242
+ Enabled: true
243
+ Max: 10
244
+ Metrics/ModuleLength:
245
+ Description: Avoid modules longer than 100 lines of code.
246
+ Enabled: true
247
+ Max: 100
248
+ Metrics/ParameterLists:
249
+ Description: Avoid parameter lists longer than three or four parameters.
250
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#too-many-params
251
+ Enabled: false
252
+ Metrics/PerceivedComplexity:
253
+ Description: A complexity metric geared towards measuring complexity for a human
254
+ reader.
255
+ Enabled: true
256
+ Metrics/BlockLength:
257
+ Exclude:
258
+ - Rakefile
259
+ - "**/*.rake"
260
+ - spec/**/*.rb
261
+ - "**/*.gemspec"
262
+ Performance/Count:
263
+ Description: Use `count` instead of `select...size`, `reject...size`, `select...count`,
264
+ `reject...count`, `select...length`, and `reject...length`.
265
+ Enabled: true
266
+ Performance/Detect:
267
+ Description: Use `detect` instead of `select.first`, `find_all.first`, `select.last`,
268
+ and `find_all.last`.
269
+ Reference: https://github.com/JuanitoFatas/fast-ruby#enumerabledetect-vs-enumerableselectfirst-code
270
+ Enabled: true
271
+ Performance/FlatMap:
272
+ Description: Use `Enumerable#flat_map` instead of `Enumerable#map...Array#flatten(1)`
273
+ or `Enumberable#collect..Array#flatten(1)`
274
+ Reference: https://github.com/JuanitoFatas/fast-ruby#enumerablemaparrayflatten-vs-enumerableflat_map-code
275
+ Enabled: true
276
+ EnabledForFlattenWithoutParams: false
277
+ Performance/ReverseEach:
278
+ Description: Use `reverse_each` instead of `reverse.each`.
279
+ Reference: https://github.com/JuanitoFatas/fast-ruby#enumerablereverseeach-vs-enumerablereverse_each-code
280
+ Enabled: true
281
+ Style/Sample:
282
+ Description: Use `sample` instead of `shuffle.first`, `shuffle.last`, and `shuffle[Fixnum]`.
283
+ Reference: https://github.com/JuanitoFatas/fast-ruby#arrayshufflefirst-vs-arraysample-code
284
+ Enabled: true
285
+ Performance/Size:
286
+ Description: Use `size` instead of `count` for counting the number of elements in
287
+ `Array` and `Hash`.
288
+ Reference: https://github.com/JuanitoFatas/fast-ruby#arraycount-vs-arraysize-code
289
+ Enabled: true
290
+ Performance/StringReplacement:
291
+ Description: Use `tr` instead of `gsub` when you are replacing the same number of
292
+ characters. Use `delete` instead of `gsub` when you are deleting characters.
293
+ Reference: https://github.com/JuanitoFatas/fast-ruby#stringgsub-vs-stringtr-code
294
+ Enabled: true
295
+ Layout/AccessModifierIndentation:
296
+ Description: Check indentation of private/protected visibility modifiers.
297
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#indent-public-private-protected
298
+ Enabled: false
299
+ Naming/AccessorMethodName:
300
+ Description: Check the naming of accessor methods for get_/set_.
301
+ Enabled: false
302
+ Style/Alias:
303
+ Description: Use alias_method instead of alias.
304
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#alias-method
305
+ Enabled: false
306
+ Layout/AlignArray:
307
+ Description: Align the elements of an array literal if they span more than one line.
308
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#align-multiline-arrays
309
+ Enabled: true
310
+ Layout/AlignHash:
311
+ Description: Align the elements of a hash literal if they span more than one line.
312
+ Enabled: true
313
+ Layout/AlignParameters:
314
+ Description: Align the parameters of a method call if they span more than one line.
315
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-double-indent
316
+ Enabled: true
317
+ Style/AndOr:
318
+ Description: Use &&/|| instead of and/or.
319
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-and-or-or
320
+ Enabled: true
321
+ Style/ArrayJoin:
322
+ Description: Use Array#join instead of Array#*.
323
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#array-join
324
+ Enabled: false
325
+ Style/AsciiComments:
326
+ Description: Use only ascii symbols in comments.
327
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#english-comments
328
+ Enabled: false
329
+ Naming/AsciiIdentifiers:
330
+ Description: Use only ascii symbols in identifiers.
331
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#english-identifiers
332
+ Enabled: false
333
+ Style/Attr:
334
+ Description: Checks for uses of Module#attr.
335
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#attr
336
+ Enabled: true
337
+ Style/BeginBlock:
338
+ Description: Avoid the use of BEGIN blocks.
339
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-BEGIN-blocks
340
+ Enabled: true
341
+ Style/BarePercentLiterals:
342
+ Description: Checks if usage of %() or %Q() matches configuration.
343
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-q-shorthand
344
+ Enabled: true
345
+ Style/BlockComments:
346
+ Description: Do not use block comments.
347
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-block-comments
348
+ Enabled: false
349
+ Layout/BlockEndNewline:
350
+ Description: Put end statement of multiline block on its own line.
351
+ Enabled: true
352
+ Style/BlockDelimiters:
353
+ Description: Avoid using {...} for multi-line blocks (multiline chaining is always
354
+ ugly). Prefer {...} over do...end for single-line blocks.
355
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#single-line-blocks
356
+ Enabled: true
357
+ Style/BracesAroundHashParameters:
358
+ Description: Enforce braces style around hash parameters.
359
+ Enabled: false
360
+ Style/CaseEquality:
361
+ Description: Avoid explicit use of the case equality operator(===).
362
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-case-equality
363
+ Enabled: false
364
+ Layout/CaseIndentation:
365
+ Description: Indentation of when in a case/when/[else/]end.
366
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#indent-when-to-case
367
+ Enabled: true
368
+ Style/CharacterLiteral:
369
+ Description: Checks for uses of character literals.
370
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-character-literals
371
+ Enabled: false
372
+ Naming/ClassAndModuleCamelCase:
373
+ Description: Use CamelCase for classes and modules.
374
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#camelcase-classes
375
+ Enabled: true
376
+ Style/ClassAndModuleChildren:
377
+ Description: Checks style of children classes and modules.
378
+ Enabled: false
379
+ Style/ClassCheck:
380
+ Description: Enforces consistent use of `Object#is_a?` or `Object#kind_of?`.
381
+ Enabled: true
382
+ Style/ClassMethods:
383
+ Description: Use self when defining module/class methods.
384
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#def-self-class-methods
385
+ Enabled: false
386
+ Style/ClassVars:
387
+ Description: Avoid the use of class variables.
388
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-class-vars
389
+ Enabled: false
390
+ Layout/ClosingParenthesisIndentation:
391
+ Description: Checks the indentation of hanging closing parentheses.
392
+ Enabled: false
393
+ Style/ColonMethodCall:
394
+ Description: 'Do not use :: for method call.'
395
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#double-colons
396
+ Enabled: true
397
+ Style/CommandLiteral:
398
+ Description: Use `` or %x around command literals.
399
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-x
400
+ Enabled: false
401
+ Style/CommentAnnotation:
402
+ Description: Checks formatting of annotation comments.
403
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#annotate-keywords
404
+ Enabled: false
405
+ Layout/CommentIndentation:
406
+ Description: Indentation of comments.
407
+ Enabled: false
408
+ Naming/ConstantName:
409
+ Description: Constants should use SCREAMING_SNAKE_CASE.
410
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#screaming-snake-case
411
+ Enabled: true
412
+ Style/DefWithParentheses:
413
+ Description: Use def with parentheses when there are arguments.
414
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#method-parens
415
+ Enabled: true
416
+ Style/Documentation:
417
+ Description: Document classes and non-namespace modules.
418
+ Enabled: false
419
+ Layout/DotPosition:
420
+ Description: Checks the position of the dot in multi-line method calls.
421
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-multi-line-chains
422
+ Enabled: true
423
+ Style/DoubleNegation:
424
+ Description: Checks for uses of double negation (!!).
425
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-bang-bang
426
+ Enabled: true
427
+ Style/EachWithObject:
428
+ Description: Prefer `each_with_object` over `inject` or `reduce`.
429
+ Enabled: false
430
+ Layout/ElseAlignment:
431
+ Description: Align elses and elsifs correctly.
432
+ Enabled: true
433
+ Style/EmptyElse:
434
+ Description: Avoid empty else-clauses.
435
+ Enabled: true
436
+ Layout/EmptyLineBetweenDefs:
437
+ Description: Use empty lines between defs.
438
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#empty-lines-between-methods
439
+ Enabled: true
440
+ Layout/EmptyLines:
441
+ Description: Don't use several empty lines in a row.
442
+ Enabled: true
443
+ Layout/EmptyLinesAroundAccessModifier:
444
+ Description: Keep blank lines around access modifiers.
445
+ Enabled: false
446
+ Layout/EmptyLinesAroundBlockBody:
447
+ Description: Keeps track of empty lines around block bodies.
448
+ Enabled: false
449
+ Layout/EmptyLinesAroundClassBody:
450
+ Description: Keeps track of empty lines around class bodies.
451
+ Enabled: false
452
+ Layout/EmptyLinesAroundModuleBody:
453
+ Description: Keeps track of empty lines around module bodies.
454
+ Enabled: false
455
+ Layout/EmptyLinesAroundMethodBody:
456
+ Description: Keeps track of empty lines around method bodies.
457
+ Enabled: false
458
+ Style/EmptyLiteral:
459
+ Description: Prefer literals to Array.new/Hash.new/String.new.
460
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#literal-array-hash
461
+ Enabled: false
462
+ Style/EndBlock:
463
+ Description: Avoid the use of END blocks.
464
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-END-blocks
465
+ Enabled: false
466
+ Layout/EndOfLine:
467
+ Description: Use Unix-style line endings.
468
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#crlf
469
+ Enabled: false
470
+ Style/EvenOdd:
471
+ Description: Favor the use of Fixnum#even? && Fixnum#odd?
472
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#predicate-methods
473
+ Enabled: true
474
+ Layout/ExtraSpacing:
475
+ Description: Do not use unnecessary spacing.
476
+ Enabled: true
477
+ Naming/FileName:
478
+ Description: Use snake_case for source file names.
479
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-files
480
+ Enabled: false
481
+ Layout/InitialIndentation:
482
+ Description: Checks the indentation of the first non-blank non-comment line in a
483
+ file.
484
+ Enabled: false
485
+ Layout/IndentFirstArgument:
486
+ Description: Checks the indentation of the first parameter in a method call.
487
+ Enabled: false
488
+ Lint/FlipFlop:
489
+ Description: Checks for flip flops
490
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-flip-flops
491
+ Enabled: true
492
+ Style/For:
493
+ Description: Checks use of for or each in multiline loops.
494
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-for-loops
495
+ Enabled: true
496
+ Style/FormatString:
497
+ Description: Enforce the use of Kernel#sprintf, Kernel#format or String#%.
498
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#sprintf
499
+ Enabled: false
500
+ Style/GlobalVars:
501
+ Description: Do not introduce global variables.
502
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#instance-vars
503
+ Reference: http://www.zenspider.com/Languages/Ruby/QuickRef.html
504
+ Enabled: true
505
+ Style/GuardClause:
506
+ Description: Check for conditionals that can be replaced with guard clauses
507
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals
508
+ Enabled: true
509
+ Style/HashSyntax:
510
+ Description: 'Prefer Ruby 1.9 hash syntax { a: 1, b: 2 } over 1.8 syntax { :a =>
511
+ 1, :b => 2 }.'
512
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#hash-literals
513
+ Enabled: true
514
+ Style/IfUnlessModifier:
515
+ Description: Favor modifier if/unless usage when you have a single-line body.
516
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier
517
+ Enabled: true
518
+ Style/IfWithSemicolon:
519
+ Description: Do not use if x; .... Use the ternary operator instead.
520
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-semicolon-ifs
521
+ Enabled: true
522
+ Layout/IndentationConsistency:
523
+ Description: Keep indentation straight.
524
+ Enabled: false
525
+ Layout/IndentationWidth:
526
+ Description: Use 2 spaces for indentation.
527
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-indentation
528
+ Enabled: true
529
+ Layout/IndentFirstArrayElement:
530
+ Description: Checks the indentation of the first element in an array literal.
531
+ Enabled: false
532
+ Layout/IndentFirstHashElement:
533
+ Description: Checks the indentation of the first key in a hash literal.
534
+ Enabled: false
535
+ Style/InfiniteLoop:
536
+ Description: Use Kernel#loop for infinite loops.
537
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#infinite-loop
538
+ Enabled: true
539
+ Style/Lambda:
540
+ Description: Use the new lambda literal syntax for single-line blocks.
541
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#lambda-multi-line
542
+ Enabled: true
543
+ Style/LambdaCall:
544
+ Description: Use lambda.call(...) instead of lambda.(...).
545
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#proc-call
546
+ Enabled: false
547
+ Layout/LeadingCommentSpace:
548
+ Description: Comments should start with a space.
549
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#hash-space
550
+ Enabled: true
551
+ Style/LineEndConcatenation:
552
+ Description: Use \ instead of + or << to concatenate two string literals at line
553
+ end.
554
+ Enabled: true
555
+ Style/MethodCallWithoutArgsParentheses:
556
+ Description: Do not use parentheses for method calls with no arguments.
557
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-args-no-parens
558
+ Enabled: true
559
+ Style/MethodDefParentheses:
560
+ Description: Checks if the method definitions have or don't have parentheses.
561
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#method-parens
562
+ Enabled: true
563
+ Naming/MethodName:
564
+ Description: Use the configured style when naming methods.
565
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars
566
+ Enabled: false
567
+ Style/ModuleFunction:
568
+ Description: Checks for usage of `extend self` in modules.
569
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#module-function
570
+ Enabled: true
571
+ Style/MultilineBlockChain:
572
+ Description: Avoid multi-line chains of blocks.
573
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#single-line-blocks
574
+ Enabled: false
575
+ Layout/MultilineBlockLayout:
576
+ Description: Ensures newlines after multiline block do statements.
577
+ Enabled: true
578
+ Style/MultilineIfThen:
579
+ Description: Do not use then for multi-line if/unless.
580
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-then
581
+ Enabled: true
582
+ Layout/MultilineOperationIndentation:
583
+ Description: Checks indentation of binary operations that span more than one line.
584
+ Enabled: false
585
+ Style/MultilineTernaryOperator:
586
+ Description: 'Avoid multi-line ?: (the ternary operator); use if/unless instead.'
587
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-multiline-ternary
588
+ Enabled: true
589
+ Style/NegatedIf:
590
+ Description: Favor unless over if for negative conditions (or control flow or).
591
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#unless-for-negatives
592
+ Enabled: true
593
+ Style/NegatedWhile:
594
+ Description: Favor until over while for negative conditions.
595
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#until-for-negatives
596
+ Enabled: true
597
+ Style/NestedTernaryOperator:
598
+ Description: Use one expression per branch in a ternary operator.
599
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-nested-ternary
600
+ Enabled: true
601
+ Style/Next:
602
+ Description: Use `next` to skip iteration instead of a condition at the end.
603
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-nested-conditionals
604
+ Enabled: true
605
+ Style/NilComparison:
606
+ Description: Prefer x.nil? to x == nil.
607
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#predicate-methods
608
+ Enabled: true
609
+ Style/NonNilCheck:
610
+ Description: Checks for redundant nil checks.
611
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-non-nil-checks
612
+ Enabled: true
613
+ Style/Not:
614
+ Description: Use ! instead of not.
615
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#bang-not-not
616
+ Enabled: true
617
+ Style/NumericLiterals:
618
+ Description: Add underscores to large numeric literals to improve their readability.
619
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#underscores-in-numerics
620
+ Enabled: true
621
+ Style/OneLineConditional:
622
+ Description: Favor the ternary operator(?:) over if/then/else/end constructs.
623
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#ternary-operator
624
+ Enabled: false
625
+ Style/OptionalArguments:
626
+ Description: Checks for optional arguments that do not appear at the end of the
627
+ argument list
628
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#optional-arguments
629
+ Enabled: false
630
+ Style/ParallelAssignment:
631
+ Description: Check for simple usages of parallel assignment. It will only warn when
632
+ the number of variables matches on both sides of the assignment. This also provides
633
+ performance benefits
634
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#parallel-assignment
635
+ Enabled: false
636
+ Style/ParenthesesAroundCondition:
637
+ Description: Don't use parentheses around the condition of an if/unless/while.
638
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-parens-if
639
+ Enabled: true
640
+ Style/PercentLiteralDelimiters:
641
+ Description: Use `%`-literal delimiters consistently
642
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-literal-braces
643
+ Enabled: true
644
+ PreferredDelimiters:
645
+ default: "()"
646
+ "%i": "()"
647
+ "%I": "()"
648
+ "%r": "{}"
649
+ "%w": "()"
650
+ "%W": "()"
651
+ Style/PercentQLiterals:
652
+ Description: Checks if uses of %Q/%q match the configured preference.
653
+ Enabled: true
654
+ Style/PerlBackrefs:
655
+ Description: Avoid Perl-style regex back references.
656
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-perl-regexp-last-matchers
657
+ Enabled: false
658
+ Naming/PredicateName:
659
+ Description: Check the names of predicate methods.
660
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#bool-methods-qmark
661
+ Enabled: true
662
+ Style/Proc:
663
+ Description: Use proc instead of Proc.new.
664
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#proc
665
+ Enabled: true
666
+ Style/RaiseArgs:
667
+ Description: Checks the arguments passed to raise/fail.
668
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#exception-class-messages
669
+ Enabled: false
670
+ Style/RedundantBegin:
671
+ Description: Don't use begin blocks when they are not needed.
672
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#begin-implicit
673
+ Enabled: true
674
+ Style/RedundantException:
675
+ Description: Checks for an obsolete RuntimeException argument in raise/fail.
676
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-explicit-runtimeerror
677
+ Enabled: true
678
+ Style/RedundantReturn:
679
+ Description: Don't use return where it's not required.
680
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-explicit-return
681
+ Enabled: true
682
+ Style/RedundantSelf:
683
+ Description: Don't use self where it's not needed.
684
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-self-unless-required
685
+ Enabled: true
686
+ Style/RegexpLiteral:
687
+ Description: Use / or %r around regular expressions.
688
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-r
689
+ Enabled: false
690
+ Layout/RescueEnsureAlignment:
691
+ Description: Align rescues and ensures correctly.
692
+ Enabled: false
693
+ Style/RescueModifier:
694
+ Description: Avoid using rescue in its modifier form.
695
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-rescue-modifiers
696
+ Enabled: false
697
+ Style/SelfAssignment:
698
+ Description: Checks for places where self-assignment shorthand should have been
699
+ used.
700
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#self-assignment
701
+ Enabled: true
702
+ Style/Semicolon:
703
+ Description: Don't use semicolons to terminate expressions.
704
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-semicolon
705
+ Enabled: true
706
+ Style/SignalException:
707
+ Description: Checks for proper usage of fail and raise.
708
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#fail-method
709
+ Enabled: true
710
+ Style/SingleLineBlockParams:
711
+ Description: Enforces the names of some block params.
712
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#reduce-blocks
713
+ Enabled: true
714
+ Style/SingleLineMethods:
715
+ Description: Avoid single-line methods.
716
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-single-line-methods
717
+ Enabled: false
718
+ Layout/SpaceBeforeFirstArg:
719
+ Description: Checks that exactly one space is used between a method name and the
720
+ first argument for method calls without parentheses.
721
+ Enabled: true
722
+ Layout/SpaceAfterColon:
723
+ Description: Use spaces after colons.
724
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-operators
725
+ Enabled: true
726
+ Layout/SpaceAfterComma:
727
+ Description: Use spaces after commas.
728
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-operators
729
+ Enabled: true
730
+ Layout/SpaceAroundKeyword:
731
+ Description: Use spaces around keywords.
732
+ Enabled: true
733
+ Layout/SpaceAfterMethodName:
734
+ Description: Do not put a space between a method name and the opening parenthesis
735
+ in a method definition.
736
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#parens-no-spaces
737
+ Enabled: true
738
+ Layout/SpaceAfterNot:
739
+ Description: Tracks redundant space after the ! operator.
740
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-space-bang
741
+ Enabled: false
742
+ Layout/SpaceAfterSemicolon:
743
+ Description: Use spaces after semicolons.
744
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-operators
745
+ Enabled: true
746
+ Layout/SpaceBeforeBlockBraces:
747
+ Description: Checks that the left block brace has or doesn't have space before it.
748
+ Enabled: false
749
+ Layout/SpaceBeforeComma:
750
+ Description: No spaces before commas.
751
+ Enabled: false
752
+ Layout/SpaceBeforeComment:
753
+ Description: Checks for missing space between code and a comment on the same line.
754
+ Enabled: false
755
+ Layout/SpaceBeforeSemicolon:
756
+ Description: No spaces before semicolons.
757
+ Enabled: false
758
+ Layout/SpaceInsideBlockBraces:
759
+ Description: Checks that block braces have or don't have surrounding space. For
760
+ blocks taking parameters, checks that the left brace has or doesn't have trailing
761
+ space.
762
+ Enabled: false
763
+ Layout/SpaceAroundBlockParameters:
764
+ Description: Checks the spacing inside and after block parameters pipes.
765
+ Enabled: true
766
+ Layout/SpaceAroundEqualsInParameterDefault:
767
+ Description: Checks that the equals signs in parameter default assignments have
768
+ or don't have surrounding space depending on configuration.
769
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-around-equals
770
+ Enabled: true
771
+ Layout/SpaceAroundOperators:
772
+ Description: Use a single space around operators.
773
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-operators
774
+ Enabled: true
775
+ Layout/SpaceInsideHashLiteralBraces:
776
+ Description: Use spaces inside hash literal braces - or don't.
777
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-operators
778
+ Enabled: true
779
+ Layout/SpaceInsideParens:
780
+ Description: No spaces after ( or before ).
781
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-spaces-braces
782
+ Enabled: true
783
+ Layout/SpaceInsideRangeLiteral:
784
+ Description: No spaces inside range literals.
785
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-space-inside-range-literals
786
+ Enabled: true
787
+ Layout/SpaceInsideStringInterpolation:
788
+ Description: Checks for padding/surrounding spaces inside string interpolation.
789
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#string-interpolation
790
+ Enabled: false
791
+ Style/SpecialGlobalVars:
792
+ Description: Avoid Perl-style global variables.
793
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-cryptic-perlisms
794
+ Enabled: false
795
+ Style/StringLiterals:
796
+ Description: Checks if uses of quotes match the configured preference.
797
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#consistent-string-literals
798
+ EnforcedStyle: double_quotes
799
+ Enabled: true
800
+ Style/StringLiteralsInInterpolation:
801
+ Description: Checks if uses of quotes inside expressions in interpolated strings
802
+ match the configured preference.
803
+ Enabled: true
804
+ Style/StructInheritance:
805
+ Description: Checks for inheritance from Struct.new.
806
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-extend-struct-new
807
+ Enabled: false
808
+ Style/SymbolLiteral:
809
+ Description: Use plain symbols instead of string symbols when possible.
810
+ Enabled: false
811
+ Style/SymbolProc:
812
+ Description: Use symbols as procs instead of blocks when possible.
813
+ Enabled: false
814
+ Layout/Tab:
815
+ Description: No hard tabs.
816
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#spaces-indentation
817
+ Enabled: false
818
+ Layout/TrailingBlankLines:
819
+ Description: Checks trailing blank lines and final newline.
820
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#newline-eof
821
+ Enabled: false
822
+ Style/TrailingCommaInArguments:
823
+ Description: Checks for trailing comma in parameter lists.
824
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-trailing-params-comma
825
+ Enabled: false
826
+ Layout/TrailingWhitespace:
827
+ Description: Avoid trailing whitespace.
828
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-trailing-whitespace
829
+ Enabled: false
830
+ Style/TrivialAccessors:
831
+ Description: Prefer attr_* methods to trivial readers/writers.
832
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#attr_family
833
+ Enabled: false
834
+ Style/UnlessElse:
835
+ Description: Do not use unless with else. Rewrite these with the positive case first.
836
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-else-with-unless
837
+ Enabled: true
838
+ Style/UnneededCapitalW:
839
+ Description: Checks for %W when interpolation is not needed.
840
+ Enabled: false
841
+ Style/UnneededPercentQ:
842
+ Description: Checks for %q/%Q when single quotes or double quotes would do.
843
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-q
844
+ Enabled: false
845
+ Style/TrailingUnderscoreVariable:
846
+ Description: Checks for the usage of unneeded trailing underscores at the end of
847
+ parallel variable assignment.
848
+ Enabled: false
849
+ Style/VariableInterpolation:
850
+ Description: Don't interpolate global, instance and class variables directly in
851
+ strings.
852
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#curlies-interpolate
853
+ Enabled: true
854
+ Naming/VariableName:
855
+ Description: Use the configured style when naming variables.
856
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#snake-case-symbols-methods-vars
857
+ Enabled: true
858
+ Style/WhenThen:
859
+ Description: Use when x then ... for one-line cases.
860
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#one-line-cases
861
+ Enabled: true
862
+ Style/WhileUntilDo:
863
+ Description: Checks for redundant do after while or until.
864
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#no-multiline-while-do
865
+ Enabled: true
866
+ Style/WhileUntilModifier:
867
+ Description: Favor modifier while/until usage when you have a single-line body.
868
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier
869
+ Enabled: true
870
+ Style/MutableConstant:
871
+ Enabled: true
872
+ Style/FrozenStringLiteralComment:
873
+ Enabled: true
874
+ Style/WordArray:
875
+ Description: Use %w or %W for arrays of words.
876
+ StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-w
877
+ Enabled: true
878
+ Style/EmptyMethod:
879
+ Enabled: false
880
+ Security/Eval:
881
+ Description: The use of eval represents a serious security risk.
882
+ Enabled: true
883
+ Gemspec/RequiredRubyVersion:
884
+ Enabled: false