kube-deploy 0.1.0 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 72961f4d22a0501903c7f4d351ca2580c585ea15
4
- data.tar.gz: 260414ae9abc42d1cb335cbc7b6dda523d10138a
3
+ metadata.gz: f2baa796414e14c924d1a1c4acdb96fea8db2511
4
+ data.tar.gz: 9e788179aa3d0b8e1116043192d94ab11e385963
5
5
  SHA512:
6
- metadata.gz: 5ce1200789a0c1b12b6a9668a8472ac0832d56677f611b3d00898cef9fab4861cd75eadc6e2bc070155b19e26119aba7260072ae0172676caea6eb4c5c208c4f
7
- data.tar.gz: 136e774d3bb64326ac91fabe49ca3d2444d3452dff367d2120af9fc82b21240706c46e9b976a2f701858b6c2afabac6dfc26fcfcac65fbfc2bed0a8da843a229
6
+ metadata.gz: 5a7c8e0462d41e33f97ce4c98700520eb32d393001400fc0da77653915385ae1fe81d165e8290bfec25e77a1d22c2a30ce881fcbd3b340f9272ce18da3395a3a
7
+ data.tar.gz: 83b58523a8d86adf2d0b1bc541e8d6b00729e54c8fd7d815b49de1159df3e84cdac85be56b38809a23d4f9e7e669e97d5697b3c956571e3bcf3185c087f62bb9
data/.gitignore CHANGED
@@ -48,3 +48,5 @@ build-iPhoneSimulator/
48
48
 
49
49
  # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
50
  .rvmrc
51
+
52
+ .byebug_history
@@ -0,0 +1,1140 @@
1
+ AllCops:
2
+ Exclude:
3
+ - 'db/schema.rb'
4
+ DisabledByDefault: true
5
+
6
+ Style/AccessModifierIndentation:
7
+ EnforcedStyle: indent
8
+ SupportedStyles:
9
+ - outdent
10
+ - indent
11
+ IndentationWidth:
12
+
13
+ Style/Alias:
14
+ EnforcedStyle: prefer_alias_method
15
+ SupportedStyles:
16
+ - prefer_alias
17
+ - prefer_alias_method
18
+
19
+ Style/AlignHash:
20
+ EnforcedHashRocketStyle: key
21
+ EnforcedColonStyle: key
22
+ EnforcedLastArgumentHashStyle: ignore_implicit
23
+ SupportedLastArgumentHashStyles:
24
+ - always_inspect
25
+ - always_ignore
26
+ - ignore_implicit
27
+ - ignore_explicit
28
+
29
+ Style/AlignParameters:
30
+ EnforcedStyle: with_fixed_indentation
31
+ SupportedStyles:
32
+ - with_first_parameter
33
+ - with_fixed_indentation
34
+ IndentationWidth:
35
+
36
+ Style/AndOr:
37
+ EnforcedStyle: always
38
+ SupportedStyles:
39
+ - always
40
+ - conditionals
41
+
42
+ Style/BarePercentLiterals:
43
+ EnforcedStyle: bare_percent
44
+ SupportedStyles:
45
+ - percent_q
46
+ - bare_percent
47
+
48
+ Style/BlockDelimiters:
49
+ EnforcedStyle: line_count_based
50
+ SupportedStyles:
51
+ - line_count_based
52
+ - semantic
53
+ - braces_for_chaining
54
+ ProceduralMethods:
55
+ - benchmark
56
+ - bm
57
+ - bmbm
58
+ - create
59
+ - each_with_object
60
+ - measure
61
+ - new
62
+ - realtime
63
+ - tap
64
+ - with_object
65
+ FunctionalMethods:
66
+ - let
67
+ - let!
68
+ - subject
69
+ - watch
70
+ IgnoredMethods:
71
+ - lambda
72
+ - proc
73
+ - it
74
+
75
+ Style/BracesAroundHashParameters:
76
+ EnforcedStyle: no_braces
77
+ SupportedStyles:
78
+ - braces
79
+ - no_braces
80
+ - context_dependent
81
+
82
+ Style/CaseIndentation:
83
+ EnforcedStyle: end
84
+ SupportedStyles:
85
+ - case
86
+ - end
87
+ IndentOneStep: false
88
+ IndentationWidth:
89
+
90
+ Style/ClassAndModuleChildren:
91
+ EnforcedStyle: nested
92
+ SupportedStyles:
93
+ - nested
94
+ - compact
95
+
96
+ Style/ClassCheck:
97
+ EnforcedStyle: is_a?
98
+ SupportedStyles:
99
+ - is_a?
100
+ - kind_of?
101
+
102
+ Style/CommandLiteral:
103
+ EnforcedStyle: backticks
104
+ SupportedStyles:
105
+ - backticks
106
+ - percent_x
107
+ - mixed
108
+ AllowInnerBackticks: false
109
+
110
+ Style/CommentAnnotation:
111
+ Keywords:
112
+ - TODO
113
+ - FIXME
114
+ - OPTIMIZE
115
+ - HACK
116
+ - REVIEW
117
+
118
+ Style/ConditionalAssignment:
119
+ EnforcedStyle: assign_to_condition
120
+ SupportedStyles:
121
+ - assign_to_condition
122
+ - assign_inside_condition
123
+ SingleLineConditionsOnly: true
124
+
125
+ Style/DotPosition:
126
+ EnforcedStyle: leading
127
+ SupportedStyles:
128
+ - leading
129
+ - trailing
130
+
131
+ Style/EmptyElse:
132
+ EnforcedStyle: both
133
+ SupportedStyles:
134
+ - empty
135
+ - nil
136
+ - both
137
+
138
+ Style/EmptyLineBetweenDefs:
139
+ AllowAdjacentOneLineDefs: false
140
+
141
+ Style/EmptyLinesAroundBlockBody:
142
+ EnforcedStyle: no_empty_lines
143
+ SupportedStyles:
144
+ - empty_lines
145
+ - no_empty_lines
146
+
147
+ Style/EmptyLinesAroundClassBody:
148
+ EnforcedStyle: no_empty_lines
149
+ SupportedStyles:
150
+ - empty_lines
151
+ - empty_lines_except_namespace
152
+ - no_empty_lines
153
+
154
+ Style/EmptyLinesAroundModuleBody:
155
+ EnforcedStyle: no_empty_lines
156
+ SupportedStyles:
157
+ - empty_lines
158
+ - empty_lines_except_namespace
159
+ - no_empty_lines
160
+
161
+ Style/ExtraSpacing:
162
+ AllowForAlignment: true
163
+ ForceEqualSignAlignment: false
164
+
165
+ Style/FileName:
166
+ Exclude: []
167
+ ExpectMatchingDefinition: false
168
+ Regex:
169
+ IgnoreExecutableScripts: true
170
+
171
+ Style/FirstParameterIndentation:
172
+ EnforcedStyle: consistent
173
+ SupportedStyles:
174
+ - consistent
175
+ - special_for_inner_method_call
176
+ - special_for_inner_method_call_in_parentheses
177
+ IndentationWidth:
178
+
179
+ Style/For:
180
+ EnforcedStyle: each
181
+ SupportedStyles:
182
+ - for
183
+ - each
184
+
185
+ Style/FormatString:
186
+ EnforcedStyle: format
187
+ SupportedStyles:
188
+ - format
189
+ - sprintf
190
+ - percent
191
+
192
+ Style/FrozenStringLiteralComment:
193
+ Details: >-
194
+ Add `# frozen_string_literal: true` to the top of the file. Frozen string
195
+ literals will become the default in a future Ruby version, and we want to
196
+ make sure we're ready.
197
+ EnforcedStyle: when_needed
198
+ SupportedStyles:
199
+ - when_needed
200
+ - always
201
+ - never
202
+
203
+ Style/GlobalVars:
204
+ AllowedVariables: []
205
+
206
+ Style/HashSyntax:
207
+ EnforcedStyle: ruby19
208
+ SupportedStyles:
209
+ - ruby19
210
+ - hash_rockets
211
+ - no_mixed_keys
212
+ - ruby19_no_mixed_keys
213
+ UseHashRocketsWithSymbolValues: false
214
+ PreferHashRocketsForNonAlnumEndingSymbols: false
215
+
216
+ Style/IndentationConsistency:
217
+ EnforcedStyle: normal
218
+ SupportedStyles:
219
+ - normal
220
+ - rails
221
+
222
+ Style/IndentationWidth:
223
+ Width: 2
224
+
225
+ Style/IndentArray:
226
+ EnforcedStyle: consistent
227
+ SupportedStyles:
228
+ - special_inside_parentheses
229
+ - consistent
230
+ - align_brackets
231
+ IndentationWidth:
232
+
233
+ Style/IndentAssignment:
234
+ IndentationWidth:
235
+
236
+ Style/IndentHash:
237
+ EnforcedStyle: consistent
238
+ SupportedStyles:
239
+ - special_inside_parentheses
240
+ - consistent
241
+ - align_braces
242
+ IndentationWidth:
243
+
244
+ Style/LambdaCall:
245
+ EnforcedStyle: call
246
+ SupportedStyles:
247
+ - call
248
+ - braces
249
+
250
+ Style/Next:
251
+ EnforcedStyle: skip_modifier_ifs
252
+ MinBodyLength: 3
253
+ SupportedStyles:
254
+ - skip_modifier_ifs
255
+ - always
256
+
257
+ Style/NonNilCheck:
258
+ IncludeSemanticChanges: false
259
+
260
+ Style/MethodDefParentheses:
261
+ EnforcedStyle: require_parentheses
262
+ SupportedStyles:
263
+ - require_parentheses
264
+ - require_no_parentheses
265
+ - require_no_parentheses_except_multiline
266
+
267
+ Style/MethodName:
268
+ EnforcedStyle: snake_case
269
+ SupportedStyles:
270
+ - snake_case
271
+ - camelCase
272
+
273
+ Style/MultilineArrayBraceLayout:
274
+ EnforcedStyle: symmetrical
275
+ SupportedStyles:
276
+ - symmetrical
277
+ - new_line
278
+ - same_line
279
+
280
+ Style/MultilineHashBraceLayout:
281
+ EnforcedStyle: symmetrical
282
+ SupportedStyles:
283
+ - symmetrical
284
+ - new_line
285
+ - same_line
286
+
287
+ Style/MultilineMethodCallBraceLayout:
288
+ EnforcedStyle: symmetrical
289
+ SupportedStyles:
290
+ - symmetrical
291
+ - new_line
292
+ - same_line
293
+
294
+ Style/MultilineMethodCallIndentation:
295
+ EnforcedStyle: indented
296
+ SupportedStyles:
297
+ - aligned
298
+ - indented
299
+ - indented_relative_to_receiver
300
+ IndentationWidth: 2
301
+
302
+ Style/MultilineMethodDefinitionBraceLayout:
303
+ EnforcedStyle: symmetrical
304
+ SupportedStyles:
305
+ - symmetrical
306
+ - new_line
307
+ - same_line
308
+
309
+ Style/NumericLiteralPrefix:
310
+ EnforcedOctalStyle: zero_only
311
+ SupportedOctalStyles:
312
+ - zero_with_o
313
+ - zero_only
314
+
315
+ Style/ParenthesesAroundCondition:
316
+ AllowSafeAssignment: true
317
+
318
+ Style/PercentLiteralDelimiters:
319
+ PreferredDelimiters:
320
+ '%': '()'
321
+ '%i': '()'
322
+ '%q': '()'
323
+ '%Q': '()'
324
+ '%r': '{}'
325
+ '%s': '()'
326
+ '%w': '()'
327
+ '%W': '()'
328
+ '%x': '()'
329
+
330
+ Style/PercentQLiterals:
331
+ EnforcedStyle: lower_case_q
332
+ SupportedStyles:
333
+ - lower_case_q
334
+ - upper_case_q
335
+
336
+ Style/PredicateName:
337
+ NamePrefix:
338
+ - is_
339
+ NamePrefixBlacklist:
340
+ - is_
341
+ NameWhitelist:
342
+ - is_a?
343
+ Exclude:
344
+ - 'spec/**/*'
345
+
346
+ Style/PreferredHashMethods:
347
+ EnforcedStyle: short
348
+ SupportedStyles:
349
+ - short
350
+ - verbose
351
+
352
+ Style/RaiseArgs:
353
+ EnforcedStyle: exploded
354
+ SupportedStyles:
355
+ - compact
356
+ - exploded
357
+
358
+ Style/RedundantReturn:
359
+ AllowMultipleReturnValues: false
360
+
361
+ Style/RegexpLiteral:
362
+ EnforcedStyle: slashes
363
+ SupportedStyles:
364
+ - slashes
365
+ - percent_r
366
+ - mixed
367
+ AllowInnerSlashes: false
368
+
369
+ Style/SafeNavigation:
370
+ ConvertCodeThatCanStartToReturnNil: false
371
+
372
+ Style/Semicolon:
373
+ AllowAsExpressionSeparator: false
374
+
375
+ Style/SignalException:
376
+ EnforcedStyle: only_raise
377
+ SupportedStyles:
378
+ - only_raise
379
+ - only_fail
380
+ - semantic
381
+
382
+ Style/SingleLineMethods:
383
+ AllowIfMethodIsEmpty: true
384
+
385
+ Style/SpaceBeforeFirstArg:
386
+ AllowForAlignment: true
387
+
388
+ Style/SpecialGlobalVars:
389
+ EnforcedStyle: use_english_names
390
+ SupportedStyles:
391
+ - use_perl_names
392
+ - use_english_names
393
+
394
+ Style/StabbyLambdaParentheses:
395
+ EnforcedStyle: require_parentheses
396
+ SupportedStyles:
397
+ - require_parentheses
398
+ - require_no_parentheses
399
+
400
+ Style/StringLiteralsInInterpolation:
401
+ EnforcedStyle: single_quotes
402
+ SupportedStyles:
403
+ - single_quotes
404
+ - double_quotes
405
+
406
+ Style/SpaceAroundBlockParameters:
407
+ EnforcedStyleInsidePipes: no_space
408
+ SupportedStylesInsidePipes:
409
+ - space
410
+ - no_space
411
+
412
+ Style/SpaceAroundEqualsInParameterDefault:
413
+ EnforcedStyle: space
414
+ SupportedStyles:
415
+ - space
416
+ - no_space
417
+
418
+ Style/SpaceAroundOperators:
419
+ AllowForAlignment: true
420
+
421
+ Style/SpaceBeforeBlockBraces:
422
+ EnforcedStyle: space
423
+ SupportedStyles:
424
+ - space
425
+ - no_space
426
+
427
+ Style/SpaceInsideBlockBraces:
428
+ EnforcedStyle: space
429
+ SupportedStyles:
430
+ - space
431
+ - no_space
432
+ EnforcedStyleForEmptyBraces: no_space
433
+ SpaceBeforeBlockParameters: true
434
+
435
+ Style/SpaceInsideHashLiteralBraces:
436
+ EnforcedStyle: space
437
+ EnforcedStyleForEmptyBraces: no_space
438
+ SupportedStyles:
439
+ - space
440
+ - no_space
441
+ - compact
442
+
443
+ Style/SpaceInsideStringInterpolation:
444
+ EnforcedStyle: no_space
445
+ SupportedStyles:
446
+ - space
447
+ - no_space
448
+
449
+ Style/SymbolProc:
450
+ IgnoredMethods:
451
+ - respond_to
452
+ - define_method
453
+
454
+ Style/TernaryParentheses:
455
+ EnforcedStyle: require_no_parentheses
456
+ SupportedStyles:
457
+ - require_parentheses
458
+ - require_no_parentheses
459
+ AllowSafeAssignment: true
460
+
461
+ Style/TrailingBlankLines:
462
+ EnforcedStyle: final_newline
463
+ SupportedStyles:
464
+ - final_newline
465
+ - final_blank_line
466
+
467
+ Style/TrivialAccessors:
468
+ ExactNameMatch: true
469
+ AllowPredicates: true
470
+ AllowDSLWriters: false
471
+ IgnoreClassMethods: false
472
+ Whitelist:
473
+ - to_ary
474
+ - to_a
475
+ - to_c
476
+ - to_enum
477
+ - to_h
478
+ - to_hash
479
+ - to_i
480
+ - to_int
481
+ - to_io
482
+ - to_open
483
+ - to_path
484
+ - to_proc
485
+ - to_r
486
+ - to_regexp
487
+ - to_str
488
+ - to_s
489
+ - to_sym
490
+
491
+ Style/VariableName:
492
+ EnforcedStyle: snake_case
493
+ SupportedStyles:
494
+ - snake_case
495
+ - camelCase
496
+
497
+ Style/WhileUntilModifier:
498
+ MaxLineLength: 80
499
+
500
+ Style/WordArray:
501
+ EnforcedStyle: percent
502
+ SupportedStyles:
503
+ - percent
504
+ - brackets
505
+ MinSize: 0
506
+ WordRegex: !ruby/regexp /\A[\p{Word}\n\t]+\z/
507
+
508
+ Metrics/BlockNesting:
509
+ Max: 3
510
+
511
+ Metrics/LineLength:
512
+ Max: 120
513
+ AllowHeredoc: true
514
+ AllowURI: true
515
+ URISchemes:
516
+ - http
517
+ - https
518
+ IgnoreCopDirectives: false
519
+ IgnoredPatterns:
520
+ - '\A\s*test(_\w+)?\s.*(do|->)(\s|\Z)'
521
+
522
+ Metrics/ParameterLists:
523
+ Max: 5
524
+ CountKeywordArgs: false
525
+
526
+ Lint/BlockAlignment:
527
+ EnforcedStyleAlignWith: either
528
+ SupportedStylesAlignWith:
529
+ - either
530
+ - start_of_block
531
+ - start_of_line
532
+
533
+ Lint/EndAlignment:
534
+ EnforcedStyleAlignWith: variable
535
+ SupportedStylesAlignWith:
536
+ - keyword
537
+ - variable
538
+ - start_of_line
539
+
540
+ Lint/DefEndAlignment:
541
+ EnforcedStyleAlignWith: start_of_line
542
+ SupportedStylesAlignWith:
543
+ - start_of_line
544
+ - def
545
+
546
+ Lint/InheritException:
547
+ EnforcedStyle: runtime_error
548
+ SupportedStyles:
549
+ - runtime_error
550
+ - standard_error
551
+
552
+ Lint/UnusedBlockArgument:
553
+ IgnoreEmptyBlocks: true
554
+ AllowUnusedKeywordArguments: false
555
+
556
+ Lint/UnusedMethodArgument:
557
+ AllowUnusedKeywordArguments: false
558
+ IgnoreEmptyMethods: true
559
+
560
+ Performance/RedundantMerge:
561
+ MaxKeyValuePairs: 2
562
+
563
+ Rails/ActionFilter:
564
+ EnforcedStyle: action
565
+ SupportedStyles:
566
+ - action
567
+ - filter
568
+ Include:
569
+ - app/controllers/**/*.rb
570
+
571
+ Rails/Date:
572
+ EnforcedStyle: flexible
573
+ SupportedStyles:
574
+ - strict
575
+ - flexible
576
+
577
+ Rails/DynamicFindBy:
578
+ Whitelist:
579
+ - find_by_sql
580
+
581
+ Rails/Exit:
582
+ Include:
583
+ - app/**/*.rb
584
+ - config/**/*.rb
585
+ - lib/**/*.rb
586
+ Exclude:
587
+ - 'lib/**/*.rake'
588
+
589
+ Rails/FindBy:
590
+ Include:
591
+ - app/models/**/*.rb
592
+
593
+ Rails/FindEach:
594
+ Include:
595
+ - app/models/**/*.rb
596
+
597
+ Rails/HasAndBelongsToMany:
598
+ Include:
599
+ - app/models/**/*.rb
600
+
601
+ Rails/NotNullColumn:
602
+ Include:
603
+ - db/migrate/*.rb
604
+
605
+ Rails/Output:
606
+ Include:
607
+ - app/**/*.rb
608
+ - config/**/*.rb
609
+ - db/**/*.rb
610
+ - lib/**/*.rb
611
+
612
+ Rails/ReadWriteAttribute:
613
+ Include:
614
+ - app/models/**/*.rb
615
+
616
+ Rails/RequestReferer:
617
+ EnforcedStyle: referer
618
+ SupportedStyles:
619
+ - referer
620
+ - referrer
621
+
622
+ Rails/SafeNavigation:
623
+ ConvertTry: false
624
+
625
+ Rails/ScopeArgs:
626
+ Include:
627
+ - app/models/**/*.rb
628
+
629
+ Rails/TimeZone:
630
+ EnforcedStyle: flexible
631
+ SupportedStyles:
632
+ - strict
633
+ - flexible
634
+
635
+ Rails/UniqBeforePluck:
636
+ EnforcedStyle: conservative
637
+ SupportedStyles:
638
+ - conservative
639
+ - aggressive
640
+
641
+ Rails/Validation:
642
+ Include:
643
+ - app/models/**/*.rb
644
+
645
+ Style/AccessorMethodName:
646
+ Enabled: true
647
+
648
+ Style/AlignArray:
649
+ Enabled: true
650
+
651
+ Style/ArrayJoin:
652
+ Enabled: true
653
+
654
+ Style/AsciiIdentifiers:
655
+ Enabled: true
656
+
657
+ Style/Attr:
658
+ Enabled: true
659
+
660
+ Style/BeginBlock:
661
+ Enabled: true
662
+
663
+ Style/BlockComments:
664
+ Enabled: true
665
+
666
+ Style/BlockEndNewline:
667
+ Enabled: true
668
+
669
+ Style/CaseEquality:
670
+ Enabled: true
671
+
672
+ Style/CharacterLiteral:
673
+ Enabled: true
674
+
675
+ Style/ClassAndModuleCamelCase:
676
+ Enabled: true
677
+
678
+ Style/ClassMethods:
679
+ Enabled: true
680
+
681
+ Style/ClassVars:
682
+ Enabled: true
683
+
684
+ Style/ClosingParenthesisIndentation:
685
+ Enabled: true
686
+
687
+ Style/ColonMethodCall:
688
+ Enabled: true
689
+
690
+ Style/CommentIndentation:
691
+ Enabled: true
692
+
693
+ Style/ConstantName:
694
+ Enabled: true
695
+
696
+ Style/DefWithParentheses:
697
+ Enabled: true
698
+
699
+ Style/EachForSimpleLoop:
700
+ Enabled: true
701
+
702
+ Style/EachWithObject:
703
+ Enabled: true
704
+
705
+ Style/ElseAlignment:
706
+ Enabled: true
707
+
708
+ Style/EmptyCaseCondition:
709
+ Enabled: true
710
+
711
+ Style/EmptyLines:
712
+ Enabled: true
713
+
714
+ Style/EmptyLinesAroundAccessModifier:
715
+ Enabled: true
716
+
717
+ Style/EmptyLinesAroundMethodBody:
718
+ Enabled: true
719
+
720
+ Style/EmptyLiteral:
721
+ Enabled: true
722
+
723
+ Style/EndBlock:
724
+ Enabled: true
725
+
726
+ Style/EndOfLine:
727
+ Enabled: true
728
+
729
+ Style/EvenOdd:
730
+ Enabled: true
731
+
732
+ Style/InitialIndentation:
733
+ Enabled: true
734
+
735
+ Style/FlipFlop:
736
+ Enabled: true
737
+
738
+ Style/IfInsideElse:
739
+ Enabled: true
740
+
741
+ Style/IfUnlessModifierOfIfUnless:
742
+ Enabled: true
743
+
744
+ Style/IfWithSemicolon:
745
+ Enabled: true
746
+
747
+ Style/IdenticalConditionalBranches:
748
+ Enabled: true
749
+
750
+ Style/InfiniteLoop:
751
+ Enabled: true
752
+
753
+ Style/LeadingCommentSpace:
754
+ Enabled: true
755
+
756
+ Style/LineEndConcatenation:
757
+ Enabled: true
758
+
759
+ Style/MethodCallWithoutArgsParentheses:
760
+ Enabled: true
761
+
762
+ Style/MethodMissing:
763
+ Enabled: true
764
+
765
+ Style/MultilineBlockChain:
766
+ Enabled: true
767
+
768
+ Style/MultilineBlockLayout:
769
+ Enabled: true
770
+
771
+ Style/MultilineIfThen:
772
+ Enabled: true
773
+
774
+ Style/MultilineMemoization:
775
+ Enabled: true
776
+
777
+ Style/MultilineTernaryOperator:
778
+ Enabled: true
779
+
780
+ Style/NegatedIf:
781
+ Enabled: true
782
+
783
+ Style/NegatedWhile:
784
+ Enabled: true
785
+
786
+ Style/NestedModifier:
787
+ Enabled: true
788
+
789
+ Style/NestedParenthesizedCalls:
790
+ Enabled: true
791
+
792
+ Style/NestedTernaryOperator:
793
+ Enabled: true
794
+
795
+ Style/NilComparison:
796
+ Enabled: true
797
+
798
+ Style/Not:
799
+ Enabled: true
800
+
801
+ Style/OneLineConditional:
802
+ Enabled: true
803
+
804
+ Style/OpMethod:
805
+ Enabled: true
806
+
807
+ Style/OptionalArguments:
808
+ Enabled: true
809
+
810
+ Style/ParallelAssignment:
811
+ Enabled: true
812
+
813
+ Style/PerlBackrefs:
814
+ Enabled: true
815
+
816
+ Style/Proc:
817
+ Enabled: true
818
+
819
+ Style/RedundantBegin:
820
+ Enabled: true
821
+
822
+ Style/RedundantException:
823
+ Enabled: true
824
+
825
+ Style/RedundantFreeze:
826
+ Enabled: true
827
+
828
+ Style/RedundantParentheses:
829
+ Enabled: true
830
+
831
+ Style/RedundantSelf:
832
+ Enabled: true
833
+
834
+ Style/RescueEnsureAlignment:
835
+ Enabled: true
836
+
837
+ Style/RescueModifier:
838
+ Enabled: true
839
+
840
+ Style/SelfAssignment:
841
+ Enabled: true
842
+
843
+ Style/SpaceAfterColon:
844
+ Enabled: true
845
+
846
+ Style/SpaceAfterComma:
847
+ Enabled: true
848
+
849
+ Style/SpaceAfterMethodName:
850
+ Enabled: true
851
+
852
+ Style/SpaceAfterNot:
853
+ Enabled: true
854
+
855
+ Style/SpaceAfterSemicolon:
856
+ Enabled: true
857
+
858
+ Style/SpaceBeforeComma:
859
+ Enabled: true
860
+
861
+ Style/SpaceBeforeComment:
862
+ Enabled: true
863
+
864
+ Style/SpaceBeforeSemicolon:
865
+ Enabled: true
866
+
867
+ Style/SpaceAroundKeyword:
868
+ Enabled: true
869
+
870
+ Style/SpaceInsideArrayPercentLiteral:
871
+ Enabled: true
872
+
873
+ Style/SpaceInsidePercentLiteralDelimiters:
874
+ Enabled: true
875
+
876
+ Style/SpaceInsideBrackets:
877
+ Enabled: true
878
+
879
+ Style/SpaceInsideParens:
880
+ Enabled: true
881
+
882
+ Style/SpaceInsideRangeLiteral:
883
+ Enabled: true
884
+
885
+ Style/SymbolLiteral:
886
+ Enabled: true
887
+
888
+ Style/Tab:
889
+ Enabled: true
890
+
891
+ Style/TrailingWhitespace:
892
+ Enabled: true
893
+
894
+ Style/UnlessElse:
895
+ Enabled: true
896
+
897
+ Style/UnneededCapitalW:
898
+ Enabled: true
899
+
900
+ Style/UnneededInterpolation:
901
+ Enabled: true
902
+
903
+ Style/UnneededPercentQ:
904
+ Enabled: true
905
+
906
+ Style/VariableInterpolation:
907
+ Enabled: true
908
+
909
+ Style/WhenThen:
910
+ Enabled: true
911
+
912
+ Style/WhileUntilDo:
913
+ Enabled: true
914
+
915
+ Style/ZeroLengthPredicate:
916
+ Enabled: true
917
+
918
+ Lint/AmbiguousOperator:
919
+ Enabled: true
920
+
921
+ Lint/AmbiguousRegexpLiteral:
922
+ Enabled: true
923
+
924
+ Lint/CircularArgumentReference:
925
+ Enabled: true
926
+
927
+ Lint/ConditionPosition:
928
+ Enabled: true
929
+
930
+ Lint/Debugger:
931
+ Enabled: true
932
+
933
+ Lint/DeprecatedClassMethods:
934
+ Enabled: true
935
+
936
+ Lint/DuplicateMethods:
937
+ Enabled: true
938
+
939
+ Lint/DuplicatedKey:
940
+ Enabled: true
941
+
942
+ Lint/EachWithObjectArgument:
943
+ Enabled: true
944
+
945
+ Lint/ElseLayout:
946
+ Enabled: true
947
+
948
+ Lint/EmptyEnsure:
949
+ Enabled: true
950
+
951
+ Lint/EmptyInterpolation:
952
+ Enabled: true
953
+
954
+ Lint/EndInMethod:
955
+ Enabled: true
956
+
957
+ Lint/EnsureReturn:
958
+ Enabled: true
959
+
960
+ Lint/FloatOutOfRange:
961
+ Enabled: true
962
+
963
+ Lint/FormatParameterMismatch:
964
+ Enabled: true
965
+
966
+ Lint/HandleExceptions:
967
+ Enabled: true
968
+
969
+ Lint/ImplicitStringConcatenation:
970
+ Description: Checks for adjacent string literals on the same line, which could
971
+ better be represented as a single string literal.
972
+
973
+ Lint/IneffectiveAccessModifier:
974
+ Description: Checks for attempts to use `private` or `protected` to set the visibility
975
+ of a class method, which does not work.
976
+
977
+ Lint/InvalidCharacterLiteral:
978
+ Description: Checks for invalid character literals with a non-escaped whitespace
979
+ character.
980
+
981
+ Lint/LiteralInCondition:
982
+ Enabled: true
983
+
984
+ Lint/LiteralInInterpolation:
985
+ Enabled: true
986
+
987
+ Lint/Loop:
988
+ Description: Use Kernel#loop with break rather than begin/end/until or begin/end/while
989
+ for post-loop tests.
990
+
991
+ Lint/NestedMethodDefinition:
992
+ Enabled: true
993
+
994
+ Lint/NextWithoutAccumulator:
995
+ Description: Do not omit the accumulator when calling `next` in a `reduce`/`inject`
996
+ block.
997
+
998
+ Lint/NonLocalExitFromIterator:
999
+ Enabled: true
1000
+
1001
+ Lint/ParenthesesAsGroupedExpression:
1002
+ Enabled: true
1003
+
1004
+ Lint/PercentStringArray:
1005
+ Enabled: true
1006
+
1007
+ Lint/PercentSymbolArray:
1008
+ Enabled: true
1009
+
1010
+ Lint/RandOne:
1011
+ Description: Checks for `rand(1)` calls. Such calls always return `0` and most
1012
+ likely a mistake.
1013
+
1014
+ Lint/RequireParentheses:
1015
+ Enabled: true
1016
+
1017
+ Lint/RescueException:
1018
+ Enabled: true
1019
+
1020
+ Lint/ShadowedException:
1021
+ Enabled: true
1022
+
1023
+ Lint/ShadowingOuterLocalVariable:
1024
+ Enabled: true
1025
+
1026
+ Lint/StringConversionInInterpolation:
1027
+ Enabled: true
1028
+
1029
+ Lint/UnderscorePrefixedVariableName:
1030
+ Enabled: true
1031
+
1032
+ Lint/UnifiedInteger:
1033
+ Enabled: true
1034
+
1035
+ Lint/UnneededDisable:
1036
+ Enabled: true
1037
+
1038
+ Lint/UnneededSplatExpansion:
1039
+ Enabled: true
1040
+
1041
+ Lint/UnreachableCode:
1042
+ Enabled: true
1043
+
1044
+ Lint/UselessAccessModifier:
1045
+ ContextCreatingMethods: []
1046
+
1047
+ Lint/UselessAssignment:
1048
+ Enabled: true
1049
+
1050
+ Lint/UselessComparison:
1051
+ Enabled: true
1052
+
1053
+ Lint/UselessElseWithoutRescue:
1054
+ Enabled: true
1055
+
1056
+ Lint/UselessSetterCall:
1057
+ Enabled: true
1058
+
1059
+ Lint/Void:
1060
+ Enabled: true
1061
+
1062
+ Performance/CaseWhenSplat:
1063
+ Enabled: true
1064
+
1065
+ Performance/Count:
1066
+ SafeMode: true
1067
+
1068
+ Performance/Detect:
1069
+ SafeMode: true
1070
+
1071
+ Performance/DoubleStartEndWith:
1072
+ Enabled: true
1073
+
1074
+ Performance/EndWith:
1075
+ Enabled: true
1076
+
1077
+ Performance/FixedSize:
1078
+ Enabled: true
1079
+
1080
+ Performance/FlatMap:
1081
+ EnabledForFlattenWithoutParams: false
1082
+
1083
+ Performance/HashEachMethods:
1084
+ Enabled: true
1085
+
1086
+ Performance/LstripRstrip:
1087
+ Enabled: true
1088
+
1089
+ Performance/RangeInclude:
1090
+ Enabled: true
1091
+
1092
+ Performance/RedundantBlockCall:
1093
+ Enabled: true
1094
+
1095
+ Performance/RedundantMatch:
1096
+ Enabled: true
1097
+
1098
+ Performance/RedundantSortBy:
1099
+ Enabled: true
1100
+
1101
+ Performance/ReverseEach:
1102
+ Enabled: true
1103
+
1104
+ Performance/Sample:
1105
+ Enabled: true
1106
+
1107
+ Performance/Size:
1108
+ Enabled: true
1109
+
1110
+ Performance/CompareWithBlock:
1111
+ Enabled: true
1112
+
1113
+ Performance/StartWith:
1114
+ Enabled: true
1115
+
1116
+ Performance/StringReplacement:
1117
+ Enabled: true
1118
+
1119
+ Rails/Delegate:
1120
+ Enabled: true
1121
+
1122
+ Rails/DelegateAllowBlank:
1123
+ Enabled: true
1124
+
1125
+ Rails/HttpPositionalArguments:
1126
+ Include:
1127
+ - spec/**/*
1128
+ - test/**/*
1129
+
1130
+ Rails/OutputSafety:
1131
+ Enabled: true
1132
+
1133
+ Rails/PluralizationGrammar:
1134
+ Enabled: true
1135
+
1136
+ Security/Eval:
1137
+ Enabled: true
1138
+
1139
+ Security/JSONLoad:
1140
+ Enabled: true