rubomatic 0.0.1.pre.rc.2 → 0.0.1.pre.rc.3
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/configs/brands_insurance/rubocop.yml +2 -0
- data/configs/brands_insurance/style.yml +2 -0
- data/configs/bundler.yml +80 -0
- data/configs/gemspec.yml +2 -0
- data/configs/gemspec_on.yml +71 -0
- data/configs/layout.yml +1204 -0
- data/configs/lint.yml +987 -0
- data/configs/metrics.yml +110 -0
- data/configs/migration.yml +6 -0
- data/configs/naming.yml +316 -0
- data/configs/performance.yml +128 -0
- data/configs/rails.yml +1054 -0
- data/configs/rubocop.yml +37 -0
- data/configs/security.yml +53 -0
- data/configs/style.yml +2503 -0
- data/lib/rubomatic/version.rb +1 -1
- metadata +16 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77a9cb3e89002deb4f44a0b9c0c565f13d9181f27e0f7acc8871e12350beebad
|
4
|
+
data.tar.gz: 29b642f25d074b7acc11dbdddc324c314f194b91e0123fae19169a507f52fd72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bc0f167c4a91ecdccce0096f204e65dd9a93aa66a7e50e1b7358f5ac6a965a8fc11270b78856126577bf2fe4b4d3a92b6a0d932e63feae7b245c6866d977591
|
7
|
+
data.tar.gz: 9ed8dad8706abb7e202b9e481efe30641be004aa11de844e6276821c1b328341a5ce3b1713b9da4d8ab8473984f22625cefd5c33591e1cf4a96d3f993354fe52
|
data/configs/bundler.yml
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
Bundler/DuplicatedGem:
|
2
|
+
Description: 'Checks for duplicate gem entries in Gemfile.'
|
3
|
+
Enabled: true
|
4
|
+
Severity: warning
|
5
|
+
VersionAdded: '0.46'
|
6
|
+
VersionChanged: '1.40'
|
7
|
+
Include:
|
8
|
+
- '**/*.gemfile'
|
9
|
+
- '**/Gemfile'
|
10
|
+
- '**/gems.rb'
|
11
|
+
|
12
|
+
Bundler/GemComment:
|
13
|
+
Description: 'Add a comment describing each gem.'
|
14
|
+
Enabled: false
|
15
|
+
VersionAdded: '0.59'
|
16
|
+
VersionChanged: '0.85'
|
17
|
+
Include:
|
18
|
+
- '**/*.gemfile'
|
19
|
+
- '**/Gemfile'
|
20
|
+
- '**/gems.rb'
|
21
|
+
IgnoredGems: [ ]
|
22
|
+
OnlyFor: [ ]
|
23
|
+
|
24
|
+
Bundler/GemFilename:
|
25
|
+
Description: 'Enforces the filename for managing gems.'
|
26
|
+
Enabled: true
|
27
|
+
VersionAdded: '1.20'
|
28
|
+
EnforcedStyle: 'Gemfile'
|
29
|
+
SupportedStyles:
|
30
|
+
- 'Gemfile'
|
31
|
+
- 'gems.rb'
|
32
|
+
Include:
|
33
|
+
- '**/Gemfile'
|
34
|
+
- '**/gems.rb'
|
35
|
+
- '**/Gemfile.lock'
|
36
|
+
- '**/gems.locked'
|
37
|
+
|
38
|
+
Bundler/GemVersion:
|
39
|
+
Description: 'Requires or forbids specifying gem versions.'
|
40
|
+
Enabled: true
|
41
|
+
VersionAdded: '1.14'
|
42
|
+
EnforcedStyle: 'required'
|
43
|
+
SupportedStyles:
|
44
|
+
- 'required'
|
45
|
+
- 'forbidden'
|
46
|
+
Include:
|
47
|
+
- '**/*.gemfile'
|
48
|
+
- '**/Gemfile'
|
49
|
+
- '**/gems.rb'
|
50
|
+
AllowedGems: [ ]
|
51
|
+
|
52
|
+
Bundler/InsecureProtocolSource:
|
53
|
+
Description: >-
|
54
|
+
The source `:gemcutter`, `:rubygems` and `:rubyforge` are deprecated
|
55
|
+
because HTTP requests are insecure. Please change your source to
|
56
|
+
'https://rubygems.org' if possible, or 'http://rubygems.org' if not.
|
57
|
+
Enabled: true
|
58
|
+
Severity: warning
|
59
|
+
VersionAdded: '0.50'
|
60
|
+
VersionChanged: '1.40'
|
61
|
+
AllowHttpProtocol: true
|
62
|
+
Include:
|
63
|
+
- '**/*.gemfile'
|
64
|
+
- '**/Gemfile'
|
65
|
+
- '**/gems.rb'
|
66
|
+
|
67
|
+
Bundler/OrderedGems:
|
68
|
+
Description: >-
|
69
|
+
Gems within groups in the Gemfile should be alphabetically sorted.
|
70
|
+
Enabled: false
|
71
|
+
VersionAdded: '0.46'
|
72
|
+
VersionChanged: '0.47'
|
73
|
+
TreatCommentsAsGroupSeparators: true
|
74
|
+
# By default, "-" and "_" are ignored for order purposes.
|
75
|
+
# This can be overridden by setting this parameter to true.
|
76
|
+
ConsiderPunctuation: false
|
77
|
+
Include:
|
78
|
+
- '**/*.gemfile'
|
79
|
+
- '**/Gemfile'
|
80
|
+
- '**/gems.rb'
|
data/configs/gemspec.yml
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
Gemspec/DependencyVersion:
|
2
|
+
Description: 'Requires or forbids specifying gem dependency versions.'
|
3
|
+
Enabled: true
|
4
|
+
VersionAdded: '1.29'
|
5
|
+
EnforcedStyle: 'required'
|
6
|
+
SupportedStyles:
|
7
|
+
- 'required'
|
8
|
+
- 'forbidden'
|
9
|
+
Include:
|
10
|
+
- '**/*.gemspec'
|
11
|
+
AllowedGems: [ ]
|
12
|
+
|
13
|
+
Gemspec/DeprecatedAttributeAssignment:
|
14
|
+
Description: Checks that deprecated attribute assignments are not set in a gemspec file.
|
15
|
+
Enabled: true
|
16
|
+
Severity: warning
|
17
|
+
VersionAdded: '1.30'
|
18
|
+
VersionChanged: '1.40'
|
19
|
+
Include:
|
20
|
+
- '**/*.gemspec'
|
21
|
+
|
22
|
+
Gemspec/DuplicatedAssignment:
|
23
|
+
Description: 'An attribute assignment method calls should be listed only once in a gemspec.'
|
24
|
+
Enabled: true
|
25
|
+
Severity: warning
|
26
|
+
VersionAdded: '0.52'
|
27
|
+
VersionChanged: '1.40'
|
28
|
+
Include:
|
29
|
+
- '**/*.gemspec'
|
30
|
+
|
31
|
+
Gemspec/OrderedDependencies:
|
32
|
+
Description: >-
|
33
|
+
Dependencies in the gemspec should be alphabetically sorted.
|
34
|
+
Enabled: true
|
35
|
+
VersionAdded: '0.51'
|
36
|
+
TreatCommentsAsGroupSeparators: true
|
37
|
+
# By default, "-" and "_" are ignored for order purposes.
|
38
|
+
# This can be overridden by setting this parameter to true.
|
39
|
+
ConsiderPunctuation: false
|
40
|
+
Include:
|
41
|
+
- '**/*.gemspec'
|
42
|
+
|
43
|
+
Gemspec/RequireMFA:
|
44
|
+
Description: 'Checks that the gemspec has metadata to require Multi-Factor Authentication from RubyGems.'
|
45
|
+
Enabled: true
|
46
|
+
Severity: warning
|
47
|
+
VersionAdded: '1.23'
|
48
|
+
VersionChanged: '1.40'
|
49
|
+
Reference:
|
50
|
+
- https://guides.rubygems.org/mfa-requirement-opt-in/
|
51
|
+
Include:
|
52
|
+
- '**/*.gemspec'
|
53
|
+
|
54
|
+
Gemspec/RequiredRubyVersion:
|
55
|
+
Description: 'Checks that `required_ruby_version` of gemspec is specified and equal to `TargetRubyVersion` of .rubocop.yml.'
|
56
|
+
Enabled: true
|
57
|
+
Severity: warning
|
58
|
+
VersionAdded: '0.52'
|
59
|
+
VersionChanged: '1.40'
|
60
|
+
Include:
|
61
|
+
- '**/*.gemspec'
|
62
|
+
|
63
|
+
Gemspec/RubyVersionGlobalsUsage:
|
64
|
+
Description: Checks usage of RUBY_VERSION in gemspec.
|
65
|
+
StyleGuide: '#no-ruby-version-in-the-gemspec'
|
66
|
+
Enabled: true
|
67
|
+
Severity: warning
|
68
|
+
VersionAdded: '0.72'
|
69
|
+
VersionChanged: '1.40'
|
70
|
+
Include:
|
71
|
+
- '**/*.gemspec'
|