gc_ruboconfig 3.3.0 → 3.4.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 +4 -4
- data/rails.yml +33 -0
- data/rubocop.yml +48 -0
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2be1985f9e42e8f001896d757cfbad9a73bd68d958b23bbf5bc6f82e9f770b8
|
|
4
|
+
data.tar.gz: ab08b7674afeda190800bb3d5932d01b13241ed1ae5155e42ca0d102b149ec0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 338c3f07882c5d36244f9f164a8ea8eb8b7309af2dbc558a3731f3e702d9bfd9f5651705cb6a63232bdbdf9dcdaeeea9e5c8f2687de171c3a045d847381be38d
|
|
7
|
+
data.tar.gz: 195c935e471234e6cb8589fc5a71dd14b55bffac6aa6b403b744c53aa6c7630544b5a2b91482bf0facd499a2723c97de6448a34aed44917924590c0ec581aca5
|
data/rails.yml
CHANGED
|
@@ -108,3 +108,36 @@ Rails/MigrationClassName:
|
|
|
108
108
|
|
|
109
109
|
Rails/TransactionExitStatement:
|
|
110
110
|
Enabled: true
|
|
111
|
+
|
|
112
|
+
Rails/ActionControllerFlashBeforeRender: # new in 2.16
|
|
113
|
+
Enabled: true
|
|
114
|
+
|
|
115
|
+
Rails/ActiveSupportOnLoad: # new in 2.16
|
|
116
|
+
Enabled: true
|
|
117
|
+
|
|
118
|
+
Rails/DotSeparatedKeys: # new in 2.15
|
|
119
|
+
Enabled: true
|
|
120
|
+
|
|
121
|
+
Rails/FreezeTime: # new in 2.16
|
|
122
|
+
Enabled: true
|
|
123
|
+
|
|
124
|
+
Rails/RootPathnameMethods: # new in 2.16
|
|
125
|
+
Enabled: true
|
|
126
|
+
|
|
127
|
+
Rails/RootPublicPath: # new in 2.15
|
|
128
|
+
Enabled: true
|
|
129
|
+
|
|
130
|
+
Rails/StripHeredoc: # new in 2.15
|
|
131
|
+
Enabled: true
|
|
132
|
+
|
|
133
|
+
Rails/ToFormattedS: # new in 2.15
|
|
134
|
+
Enabled: true
|
|
135
|
+
|
|
136
|
+
Rails/ToSWithArgument: # new in 2.16
|
|
137
|
+
Enabled: true
|
|
138
|
+
|
|
139
|
+
Rails/TopLevelHashWithIndifferentAccess: # new in 2.16
|
|
140
|
+
Enabled: true
|
|
141
|
+
|
|
142
|
+
Rails/WhereMissing: # new in 2.16
|
|
143
|
+
Enabled: true
|
data/rubocop.yml
CHANGED
|
@@ -604,3 +604,51 @@ RSpec/VerifiedDoubleReference:
|
|
|
604
604
|
# new in 2.11.0
|
|
605
605
|
RSpec/ChangeByZero:
|
|
606
606
|
Enabled: true
|
|
607
|
+
|
|
608
|
+
# new in 1.31
|
|
609
|
+
Layout/LineContinuationLeadingSpace:
|
|
610
|
+
Enabled: true
|
|
611
|
+
|
|
612
|
+
Layout/LineContinuationSpacing:
|
|
613
|
+
Enabled: true
|
|
614
|
+
|
|
615
|
+
Lint/ConstantOverwrittenInRescue:
|
|
616
|
+
Enabled: true
|
|
617
|
+
|
|
618
|
+
Lint/NonAtomicFileOperation:
|
|
619
|
+
Enabled: true
|
|
620
|
+
|
|
621
|
+
# new in 1.32 - many false positives
|
|
622
|
+
Lint/RequireRangeParentheses:
|
|
623
|
+
Enabled: false
|
|
624
|
+
|
|
625
|
+
Style/EmptyHeredoc:
|
|
626
|
+
Enabled: true
|
|
627
|
+
|
|
628
|
+
# new in 1.35
|
|
629
|
+
Style/MagicCommentFormat:
|
|
630
|
+
Enabled: true
|
|
631
|
+
|
|
632
|
+
# new in 1.30
|
|
633
|
+
Style/MapCompactWithConditionalBlock:
|
|
634
|
+
Enabled: true
|
|
635
|
+
|
|
636
|
+
# new in 2.13
|
|
637
|
+
RSpec/ClassCheck:
|
|
638
|
+
Enabled: true
|
|
639
|
+
|
|
640
|
+
# new in 2.13 - doesn't work with `its`
|
|
641
|
+
RSpec/NoExpectationExample:
|
|
642
|
+
Enabled: false
|
|
643
|
+
|
|
644
|
+
# new in 2.13
|
|
645
|
+
RSpec/Capybara/SpecificFinders:
|
|
646
|
+
Enabled: true
|
|
647
|
+
|
|
648
|
+
# new in 2.12
|
|
649
|
+
RSpec/Capybara/SpecificMatcher:
|
|
650
|
+
Enabled: true
|
|
651
|
+
|
|
652
|
+
# new in 2.12
|
|
653
|
+
RSpec/Rails/HaveHttpStatus:
|
|
654
|
+
Enabled: true
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gc_ruboconfig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GoCardless
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-10-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.36'
|
|
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: '1.
|
|
26
|
+
version: '1.36'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubocop-performance
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -44,28 +44,28 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 2.
|
|
47
|
+
version: 2.16.1
|
|
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: 2.
|
|
54
|
+
version: 2.16.1
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rubocop-rspec
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 2.
|
|
61
|
+
version: 2.13.2
|
|
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.
|
|
68
|
+
version: 2.13.2
|
|
69
69
|
description:
|
|
70
70
|
email:
|
|
71
71
|
- developers@gocardless.com
|