spicerack-styleguide 0.27.2 → 0.29.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5096f26351efb29dfd3dc4574912f8b93d86b48def24538c0fd5a74a30156d03
4
- data.tar.gz: 6af5bbb15351a94f505260c7933d4666bcabb078a7fb3b2bd6f62ee0bf6dc780
3
+ metadata.gz: 93976758d8cf4db8685472d8bb603178b5ccf7be2dcbd25e7d5d54f859c19d44
4
+ data.tar.gz: 7fd806960abe967ba5d07c6c4dd6bfadc8082ee5fe6c764ecff0fb370386c0ad
5
5
  SHA512:
6
- metadata.gz: 1c0618e7dd6a3c9d1e6f617258dc77ce2faf90da5bcd54f8c7695ea69debd65c33b2561bc111fa2f74efc831ff27ca64159e451b81b374b53ea80fc44d16d741
7
- data.tar.gz: 27e9aea35cfff644e99a12fd4e82ea0d42d693fb522ed911fda1859bbf29a7ddf482392e78d8b7a4c816ac019d62e6f5f0843f2cded1ec2e17f3a938cdc26ec5
6
+ metadata.gz: ef1f06474017ddccee17e59e553db6d5eb27c202a93475e6cd8d3751e2c9923b16d6cf4a0979a0ad9eeb533e4f2ecd38341db2fe60abbadcd1453747a40118cd
7
+ data.tar.gz: a3038f6e86bb36f9fc0ad508fc29631da6a92d391a93172ae0d63027c0e6d2542d44757c47f5265084bfc8dc6968a80a14c89e45a7888acf5cea06b897210ea7
data/README.md CHANGED
@@ -64,7 +64,7 @@ This... is a yml. You don't develop it. Go home, boilerplate gem README text, yo
64
64
 
65
65
  ## Contributing
66
66
 
67
- Bug reports and pull requests are welcome on GitHub at https://github.com/Freshly/spicerack.
67
+ Bug reports and pull requests are welcome on GitHub at https://github.com/RubyAfterAll/spicerack.
68
68
 
69
69
  ## License
70
70
 
@@ -3,6 +3,6 @@
3
3
  module Spicerack
4
4
  module Styleguide
5
5
  # This constant is managed by spicerack
6
- VERSION = "0.27.2"
6
+ VERSION = "0.29.1"
7
7
  end
8
8
  end
data/rubocop.yml CHANGED
@@ -4,7 +4,8 @@ require:
4
4
  - rubocop-rails
5
5
 
6
6
  AllCops:
7
- TargetRubyVersion: 2.6
7
+ TargetRubyVersion: 2.7
8
+ NewCops: enable
8
9
  Exclude:
9
10
  - "**/bin/**/*"
10
11
  - Rakefile
@@ -55,8 +56,24 @@ Layout/DefEndAlignment:
55
56
  Layout/DotPosition:
56
57
  Enabled: true
57
58
  EnforcedStyle: trailing
59
+ Lint/AmbiguousAssignment:
60
+ Enabled: true
61
+ Lint/DuplicateBranch:
62
+ Enabled: true
63
+ Lint/DuplicateRegexpCharacterClassElement:
64
+ Enabled: true
58
65
  Layout/ElseAlignment:
59
66
  Enabled: true
67
+ Lint/EmptyBlock:
68
+ Enabled: true
69
+ Lint/EmptyClass:
70
+ Enabled: true
71
+ Lint/NoReturnInBeginEndBlocks:
72
+ Enabled: true
73
+ Lint/ToEnumArguments:
74
+ Enabled: true
75
+ Lint/UnmodifiedReduceAccumulator:
76
+ Enabled: true
60
77
  Layout/EmptyComment:
61
78
  Enabled: true
62
79
  AllowBorderComment: true
@@ -125,6 +142,8 @@ Layout/HashAlignment:
125
142
  EnforcedHashRocketStyle: key
126
143
  EnforcedColonStyle: key
127
144
  EnforcedLastArgumentHashStyle: always_inspect
145
+ Lint/HashCompareByIdentity:
146
+ Enabled: true
128
147
  Layout/HeredocArgumentClosingParenthesis:
129
148
  Enabled: true
130
149
  Layout/HeredocIndentation:
@@ -198,6 +217,8 @@ Layout/SpaceAroundOperators:
198
217
  Layout/SpaceBeforeBlockBraces:
199
218
  Enabled: true
200
219
  EnforcedStyle: space
220
+ Layout/SpaceBeforeBrackets:
221
+ Enabled: true
201
222
  Layout/SpaceBeforeComma:
202
223
  Enabled: true
203
224
  Layout/SpaceBeforeComment:
@@ -360,6 +381,8 @@ Lint/PercentSymbolArray:
360
381
  Enabled: true
361
382
  Lint/RandOne:
362
383
  Enabled: true
384
+ Lint/RedundantSafeNavigation:
385
+ Enabled: true
363
386
  Lint/RedundantStringCoercion:
364
387
  Enabled: true
365
388
  Lint/RedundantWithIndex:
@@ -398,6 +421,8 @@ Lint/ToJSON:
398
421
  Enabled: true
399
422
  Lint/UnderscorePrefixedVariableName:
400
423
  Enabled: true
424
+ Lint/UnexpectedBlockArity:
425
+ Enabled: true
401
426
  Lint/UnifiedInteger:
402
427
  Enabled: true
403
428
  Lint/RaiseException:
@@ -550,8 +575,12 @@ Naming/VariableNumber:
550
575
 
551
576
  Performance/AncestorsInclude:
552
577
  Enabled: false
578
+ Performance/ArraySemiInfiniteRangeSlice:
579
+ Enabled: false
553
580
  Performance/BigDecimalWithNumericArgument:
554
581
  Enabled: false
582
+ Performance/BlockGivenWithExplicitBlock:
583
+ Enabled: true
555
584
  Performance/Caller:
556
585
  Enabled: false
557
586
  Performance/CaseWhenSplat:
@@ -562,6 +591,10 @@ Performance/CollectionLiteralInLoop:
562
591
  Enabled: true
563
592
  Performance/CompareWithBlock:
564
593
  Enabled: true
594
+ Performance/ConstantRegexp:
595
+ Enabled: true
596
+ Performance/ConcurrentMonotonicTime:
597
+ Enabled: true
565
598
  Performance/Count:
566
599
  Enabled: true
567
600
  Performance/Detect:
@@ -576,6 +609,10 @@ Performance/FlatMap:
576
609
  Enabled: true
577
610
  Performance/IoReadlines:
578
611
  Enabled: true
612
+ Performance/MapCompact:
613
+ Enabled: true
614
+ Performance/MethodObjectAsBlock:
615
+ Enabled: true
579
616
  Performance/OpenStruct:
580
617
  Enabled: true
581
618
  Exclude:
@@ -584,12 +621,16 @@ Performance/RangeInclude:
584
621
  Enabled: true
585
622
  Performance/RedundantBlockCall:
586
623
  Enabled: true
624
+ Performance/RedundantEqualityComparisonBlock:
625
+ Enabled: true
587
626
  Performance/RedundantMatch:
588
627
  Enabled: true
589
628
  Performance/RedundantMerge:
590
629
  Enabled: true
591
630
  Performance/RedundantSortBlock:
592
631
  Enabled: true
632
+ Performance/RedundantSplitRegexpArgument:
633
+ Enabled: true
593
634
  Performance/RedundantStringChars:
594
635
  Enabled: true
595
636
  Performance/RegexpMatch:
@@ -598,6 +639,8 @@ Performance/ReverseEach:
598
639
  Enabled: true
599
640
  Performance/ReverseFirst:
600
641
  Enabled: true
642
+ Performance/SelectMap:
643
+ Enabled: true
601
644
  Performance/Size:
602
645
  Enabled: true
603
646
  Performance/SortReverse:
@@ -606,6 +649,8 @@ Performance/Squeeze:
606
649
  Enabled: true
607
650
  Performance/StartWith:
608
651
  Enabled: true
652
+ Performance/StringIdentifierArgument:
653
+ Enabled: true
609
654
  Performance/StringInclude:
610
655
  Enabled: true
611
656
  Performance/StringReplacement:
@@ -630,6 +675,8 @@ Rails/ActiveRecordOverride:
630
675
  Enabled: true
631
676
  Rails/ActiveSupportAliases:
632
677
  Enabled: true
678
+ Rails/AddColumnIndex:
679
+ Enabled: true
633
680
  Rails/ApplicationController:
634
681
  Enabled: true
635
682
  Rails/ApplicationMailer:
@@ -638,8 +685,12 @@ Rails/ApplicationJob:
638
685
  Enabled: true
639
686
  Rails/ApplicationRecord:
640
687
  Enabled: true
688
+ Rails/ArelStar:
689
+ Enabled: true
641
690
  Rails/AfterCommitOverride:
642
691
  Enabled: true
692
+ Rails/AttributeDefaultBlockValue:
693
+ Enabled: true
643
694
  Rails/BelongsTo:
644
695
  Enabled: true
645
696
  Rails/Blank:
@@ -665,8 +716,14 @@ Rails/EnumUniqueness:
665
716
  Enabled: true
666
717
  Rails/EnvironmentComparison:
667
718
  Enabled: true
719
+ Rails/EnvironmentVariableAccess:
720
+ Enabled: true
721
+ AllowReads: true
722
+ AllowWrites: false
668
723
  Rails/Exit:
669
724
  Enabled: true
725
+ Rails/ExpandedDateRange:
726
+ Enabled: true
670
727
  Rails/FilePath:
671
728
  Enabled: true
672
729
  EnforcedStyle: arguments
@@ -695,6 +752,8 @@ Rails/HttpPositionalArguments:
695
752
  Rails/HttpStatus:
696
753
  Enabled: true
697
754
  EnforcedStyle: symbolic
755
+ Rails/I18nLocaleAssignment:
756
+ Enabled: true
698
757
  Rails/IndexBy:
699
758
  Enabled: true
700
759
  Rails/IndexWith:
@@ -780,6 +839,12 @@ Rails/ReversibleMigration:
780
839
  Enabled: true
781
840
  Include:
782
841
  - db/migrate/*.rb
842
+ Rails/RequireDependency:
843
+ Enabled: false # Theoretically not all projects could use zeitwerk
844
+ Rails/ReversibleMigrationMethodDefinition:
845
+ Enabled: true
846
+ Include:
847
+ - db/migrate/*.rb
783
848
  Rails/SafeNavigation:
784
849
  Enabled: true
785
850
  Rails/SafeNavigationWithBlank:
@@ -811,6 +876,8 @@ Rails/SquishedSQLHeredocs:
811
876
  Rails/TimeZone:
812
877
  Enabled: true
813
878
  EnforcedStyle: flexible
879
+ Rails/TimeZoneAssignment:
880
+ Enabled: true
814
881
  Rails/UniqBeforePluck:
815
882
  Enabled: true
816
883
  EnforcedStyle: conservative
@@ -822,8 +889,14 @@ Rails/UnknownEnv:
822
889
  - development
823
890
  - test
824
891
  - production
892
+ Rails/UnusedIgnoredColumns:
893
+ Enabled: true
894
+ Rails/EagerEvaluationLogMessage:
895
+ Enabled: true
825
896
  Rails/WhereExists:
826
897
  Enabled: true
898
+ Rails/WhereEquals:
899
+ Enabled: true
827
900
  Rails/WhereNot:
828
901
  Enabled: true
829
902
  Rails/Validation:
@@ -850,6 +923,8 @@ Style/Alias:
850
923
  Style/AndOr:
851
924
  Enabled: true
852
925
  EnforcedStyle: conditionals
926
+ Style/ArgumentsForwarding:
927
+ Enabled: true
853
928
  Style/ArrayCoercion:
854
929
  Enabled: true
855
930
  Style/ArrayJoin:
@@ -884,6 +959,8 @@ Style/ClassAndModuleChildren:
884
959
  Style/ClassCheck:
885
960
  Enabled: true
886
961
  EnforcedStyle: is_a?
962
+ Style/ClassEqualityComparison:
963
+ Enabled: true
887
964
  Style/ClassMethods:
888
965
  Enabled: true
889
966
  Style/ClassMethodsDefinitions:
@@ -891,6 +968,8 @@ Style/ClassMethodsDefinitions:
891
968
  EnforcedStyle: self_class
892
969
  Style/ClassVars:
893
970
  Enabled: true
971
+ Style/CollectionCompact:
972
+ Enabled: true
894
973
  Style/CollectionMethods:
895
974
  Enabled: false
896
975
  Style/ColonMethodCall:
@@ -930,6 +1009,8 @@ Style/DisableCopsWithinSourceCodeDirective:
930
1009
  Enabled: false
931
1010
  Style/Documentation:
932
1011
  Enabled: false
1012
+ Style/DocumentDynamicEvalDefinition:
1013
+ Enabled: true
933
1014
  Style/DocumentationMethod:
934
1015
  Enabled: false
935
1016
  Style/DoubleNegation:
@@ -996,6 +1077,8 @@ Style/HashAsLastArrayItem:
996
1077
  EnforcedStyle: no_braces
997
1078
  Style/HashEachMethods:
998
1079
  Enabled: true
1080
+ Style/HashExcept:
1081
+ Enabled: false # TODO: enable once ruby 3.0 is supported
999
1082
  Style/HashLikeCase:
1000
1083
  Enabled: true
1001
1084
  Style/HashSyntax:
@@ -1078,6 +1161,8 @@ Style/MutableConstant:
1078
1161
  Style/NegatedIf:
1079
1162
  Enabled: true
1080
1163
  EnforcedStyle: both
1164
+ Style/NegatedIfElseCondition:
1165
+ Enabled: true
1081
1166
  Style/NegatedUnless:
1082
1167
  Enabled: true
1083
1168
  EnforcedStyle: both
@@ -1112,6 +1197,8 @@ Style/Next:
1112
1197
  EnforcedStyle: skip_modifier_ifs
1113
1198
  Style/NilComparison:
1114
1199
  Enabled: true
1200
+ Style/NilLambda:
1201
+ Enabled: true
1115
1202
  Style/NonNilCheck:
1116
1203
  Enabled: true
1117
1204
  Style/Not:
@@ -1165,6 +1252,8 @@ Style/RaiseArgs:
1165
1252
  EnforcedStyle: exploded
1166
1253
  Style/RandomWithOffset:
1167
1254
  Enabled: true
1255
+ Style/RedundantArgument:
1256
+ Enabled: true
1168
1257
  Style/RedundantAssignment:
1169
1258
  Enabled: true
1170
1259
  Style/RedundantBegin:
@@ -1244,6 +1333,8 @@ Style/SpecialGlobalVars:
1244
1333
  Style/StabbyLambdaParentheses:
1245
1334
  Enabled: true
1246
1335
  EnforcedStyle: require_parentheses
1336
+ Style/StaticClass:
1337
+ Enabled: false
1247
1338
  Style/StderrPuts:
1248
1339
  Enabled: true
1249
1340
  Style/StringConcatenation:
@@ -1330,6 +1421,8 @@ Style/RedundantPercentQ:
1330
1421
  Enabled: true
1331
1422
  Style/RedundantSort:
1332
1423
  Enabled: true
1424
+ Style/SwapValues:
1425
+ Enabled: true
1333
1426
  Style/UnpackFirst:
1334
1427
  Enabled: true
1335
1428
  Style/VariableInterpolation:
@@ -1379,6 +1472,12 @@ RSpec/BeEql:
1379
1472
  Enabled: true
1380
1473
  RSpec/BeforeAfterAll:
1381
1474
  Enabled: true
1475
+ RSpec/Capybara/CurrentPathExpectation:
1476
+ Enabled: true
1477
+ RSpec/Capybara/FeatureMethods:
1478
+ Enabled: false
1479
+ RSpec/Capybara/VisibilityMatcher:
1480
+ Enabled: true
1382
1481
  RSpec/ContextWording:
1383
1482
  Enabled: true
1384
1483
  RSpec/DescribeClass:
@@ -1424,6 +1523,13 @@ RSpec/ExpectInHook:
1424
1523
  Enabled: true
1425
1524
  RSpec/ExpectOutput:
1426
1525
  Enabled: true
1526
+ RSpec/FactoryBot/AttributeDefinedStatically:
1527
+ Enabled: true
1528
+ RSpec/FactoryBot/CreateList:
1529
+ Enabled: true
1530
+ EnforcedStyle: create_list
1531
+ RSpec/FactoryBot/FactoryClassName:
1532
+ Enabled: true
1427
1533
  RSpec/FilePath:
1428
1534
  Enabled: true
1429
1535
  IgnoreMethods: true
@@ -1434,6 +1540,8 @@ RSpec/HookArgument:
1434
1540
  EnforcedStyle: implicit
1435
1541
  RSpec/HooksBeforeExamples:
1436
1542
  Enabled: true
1543
+ RSpec/IdenticalEqualityAssertion:
1544
+ Enabled: true
1437
1545
  RSpec/ImplicitBlockExpectation:
1438
1546
  Enabled: true
1439
1547
  RSpec/ImplicitExpect:
@@ -1444,8 +1552,6 @@ RSpec/InstanceSpy:
1444
1552
  RSpec/InstanceVariable:
1445
1553
  Enabled: true
1446
1554
  AssignmentOnly: false
1447
- RSpec/InvalidPredicateMatcher:
1448
- Enabled: true
1449
1555
  RSpec/ItBehavesLike:
1450
1556
  Enabled: true
1451
1557
  EnforcedStyle: it_behaves_like
@@ -1490,6 +1596,8 @@ RSpec/PredicateMatcher:
1490
1596
  Enabled: true
1491
1597
  Strict: false
1492
1598
  EnforcedStyle: inflected
1599
+ RSpec/Rails/AvoidSetupHook:
1600
+ Enabled: true
1493
1601
  RSpec/RepeatedDescription:
1494
1602
  Enabled: true
1495
1603
  RSpec/RepeatedExample:
@@ -1498,6 +1606,8 @@ RSpec/RepeatedExampleGroupBody:
1498
1606
  Enabled: true
1499
1607
  RSpec/RepeatedExampleGroupDescription:
1500
1608
  Enabled: true
1609
+ RSpec/RepeatedIncludeExample:
1610
+ Enabled: true
1501
1611
  RSpec/ReturnFromStub:
1502
1612
  Enabled: true
1503
1613
  EnforcedStyle: and_return
@@ -1513,6 +1623,8 @@ RSpec/SingleArgumentMessageChain:
1513
1623
  Enabled: true
1514
1624
  RSpec/SubjectStub:
1515
1625
  Enabled: true
1626
+ RSpec/StubbedMock:
1627
+ Enabled: true
1516
1628
  RSpec/VariableDefinition:
1517
1629
  Enabled: true
1518
1630
  RSpec/VariableName:
@@ -1524,18 +1636,3 @@ RSpec/VoidExpect:
1524
1636
  Enabled: true
1525
1637
  RSpec/Yield:
1526
1638
  Enabled: true
1527
-
1528
- FactoryBot/AttributeDefinedStatically:
1529
- Enabled: true
1530
- FactoryBot/CreateList:
1531
- Enabled: true
1532
- EnforcedStyle: create_list
1533
- FactoryBot/FactoryClassName:
1534
- Enabled: true
1535
-
1536
- Capybara/CurrentPathExpectation:
1537
- Enabled: true
1538
- Capybara/FeatureMethods:
1539
- Enabled: false
1540
- Capybara/VisibilityMatcher:
1541
- Enabled: true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spicerack-styleguide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.2
4
+ version: 0.29.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Allen Rettberg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-08 00:00:00.000000000 Z
11
+ date: 2022-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,56 +16,70 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.92.0
19
+ version: '1.7'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.92.0
26
+ version: '1.7'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rubocop-rspec
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.43.0
33
+ version: '2.4'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.43.0
40
+ version: '2.4'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop-performance
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.8.0
47
+ version: '1.13'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.8.0
54
+ version: '1.13'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rubocop-rails
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 2.8.0
61
+ version: '2.11'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 2.8.0
68
+ version: '2.11'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop-rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.6'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.6'
69
83
  description: Wanna write code the Freshly way? Inherit this gem in your rubocop.yml
70
84
  and keep your code fresh
71
85
  email:
@@ -83,14 +97,14 @@ files:
83
97
  - lib/spicerack/styleguide.rb
84
98
  - lib/spicerack/styleguide/version.rb
85
99
  - rubocop.yml
86
- homepage: https://github.com/Freshly/spicerack/tree/main/spicerack-styleguide
100
+ homepage: https://github.com/RubyAfterAll/spicerack/tree/main/spicerack-styleguide
87
101
  licenses:
88
102
  - MIT
89
103
  metadata:
90
- homepage_uri: https://github.com/Freshly/spicerack/tree/main/spicerack-styleguide
91
- source_code_uri: https://github.com/Freshly/spicerack/tree/main/spicerack-styleguide
92
- changelog_uri: https://github.com/Freshly/spicerack/blob/main/spicerack-styleguide/CHANGELOG.md
93
- documentation_uri: https://www.rubydoc.info/gems/spicerack-styleguide/0.27.2
104
+ homepage_uri: https://github.com/RubyAfterAll/spicerack/tree/main/spicerack-styleguide
105
+ source_code_uri: https://github.com/RubyAfterAll/spicerack/tree/main/spicerack-styleguide
106
+ changelog_uri: https://github.com/RubyAfterAll/spicerack/blob/main/spicerack-styleguide/CHANGELOG.md
107
+ documentation_uri: https://www.rubydoc.info/gems/spicerack-styleguide/0.29.1
94
108
  post_install_message:
95
109
  rdoc_options: []
96
110
  require_paths:
@@ -106,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
120
  - !ruby/object:Gem::Version
107
121
  version: '0'
108
122
  requirements: []
109
- rubygems_version: 3.2.32
123
+ rubygems_version: 3.3.7
110
124
  signing_key:
111
125
  specification_version: 4
112
126
  summary: Rubocop Styleguide for Rails and RSpec.