onceover-codequality 0.13.0 → 1.0.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/.github/dependabot.yml +17 -0
- data/.github/labeler.yml +3 -0
- data/.github/release.yml +40 -0
- data/.github/workflows/ci.yaml +52 -0
- data/.github/workflows/labeler.yaml +15 -0
- data/.github/workflows/release.yaml +106 -0
- data/.gitignore +8 -8
- data/.rubocop.yml +12 -0
- data/.rubocop_todo.yml +284 -0
- data/CHANGELOG.md +173 -0
- data/Gemfile +6 -1
- data/README.md +26 -33
- data/Rakefile +16 -0
- data/lib/onceover/codequality/cli.rb +39 -41
- data/lib/onceover/codequality/docs.rb +0 -2
- data/lib/onceover/codequality/environment.rb +3 -4
- data/lib/onceover/codequality/executor.rb +0 -1
- data/lib/onceover/codequality/formatter.rb +1 -3
- data/lib/onceover/codequality/lint.rb +2 -3
- data/lib/onceover/codequality/puppetfile.rb +0 -4
- data/lib/onceover/codequality/syntax.rb +1 -4
- data/lib/onceover/codequality/version.rb +1 -1
- data/lib/onceover/codequality.rb +0 -2
- data/onceover-codequality.gemspec +13 -12
- metadata +32 -28
- data/.travis.yml +0 -4
- data/Gemfile.lock +0 -212
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: onceover-codequality
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
|
7
|
+
- Dylan Ratcliffe
|
8
|
+
- Vox Pupuli
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -30,96 +30,102 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '13.
|
33
|
+
version: '13.3'
|
34
34
|
type: :development
|
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: '13.
|
40
|
+
version: '13.3'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '3.
|
47
|
+
version: '3.13'
|
48
48
|
type: :development
|
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: '3.
|
54
|
+
version: '3.13'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: onceover
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '5.0'
|
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: '
|
68
|
+
version: '5.0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name: puppet-
|
70
|
+
name: puppet-lint
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '4'
|
75
|
+
version: '4.3'
|
76
76
|
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '4'
|
82
|
+
version: '4.3'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name: puppet-
|
84
|
+
name: puppet-strings
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
89
|
+
version: '5.0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
96
|
+
version: '5.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name: puppet-
|
98
|
+
name: puppet-syntax
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: '
|
103
|
+
version: '6.0'
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: '
|
111
|
-
description:
|
110
|
+
version: '6.0'
|
112
111
|
email:
|
113
|
-
-
|
112
|
+
- voxpupuli@groups.io
|
114
113
|
executables: []
|
115
114
|
extensions: []
|
116
115
|
extra_rdoc_files: []
|
117
116
|
files:
|
117
|
+
- ".github/dependabot.yml"
|
118
|
+
- ".github/labeler.yml"
|
119
|
+
- ".github/release.yml"
|
120
|
+
- ".github/workflows/ci.yaml"
|
121
|
+
- ".github/workflows/labeler.yaml"
|
122
|
+
- ".github/workflows/release.yaml"
|
118
123
|
- ".gitignore"
|
119
124
|
- ".rspec"
|
120
|
-
- ".
|
125
|
+
- ".rubocop.yml"
|
126
|
+
- ".rubocop_todo.yml"
|
127
|
+
- CHANGELOG.md
|
121
128
|
- Gemfile
|
122
|
-
- Gemfile.lock
|
123
129
|
- LICENSE
|
124
130
|
- README.md
|
125
131
|
- Rakefile
|
@@ -137,11 +143,10 @@ files:
|
|
137
143
|
- lib/onceover/codequality/version.rb
|
138
144
|
- onceover-codequality.gemspec
|
139
145
|
- res/validate_yaml.py
|
140
|
-
homepage: https://github.com/
|
146
|
+
homepage: https://github.com/voxpupuli/onceover-codequality
|
141
147
|
licenses:
|
142
148
|
- Apache-2.0
|
143
149
|
metadata: {}
|
144
|
-
post_install_message:
|
145
150
|
rdoc_options: []
|
146
151
|
require_paths:
|
147
152
|
- lib
|
@@ -149,15 +154,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
149
154
|
requirements:
|
150
155
|
- - ">="
|
151
156
|
- !ruby/object:Gem::Version
|
152
|
-
version: '
|
157
|
+
version: '3.2'
|
153
158
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
154
159
|
requirements:
|
155
160
|
- - ">="
|
156
161
|
- !ruby/object:Gem::Version
|
157
162
|
version: '0'
|
158
163
|
requirements: []
|
159
|
-
rubygems_version: 3.
|
160
|
-
signing_key:
|
164
|
+
rubygems_version: 3.6.7
|
161
165
|
specification_version: 4
|
162
166
|
summary: Lint and syntax validation for onceover
|
163
167
|
test_files: []
|
data/.travis.yml
DELETED
data/Gemfile.lock
DELETED
@@ -1,212 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
onceover-codequality (0.13.0)
|
5
|
-
onceover (~> 3)
|
6
|
-
puppet-lint (~> 4)
|
7
|
-
puppet-strings (~> 4)
|
8
|
-
puppet-syntax (~> 4)
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
activesupport (8.0.2)
|
14
|
-
base64
|
15
|
-
benchmark (>= 0.3)
|
16
|
-
bigdecimal
|
17
|
-
concurrent-ruby (~> 1.0, >= 1.3.1)
|
18
|
-
connection_pool (>= 2.2.5)
|
19
|
-
drb
|
20
|
-
i18n (>= 1.6, < 2)
|
21
|
-
logger (>= 1.4.2)
|
22
|
-
minitest (>= 5.1)
|
23
|
-
securerandom (>= 0.3)
|
24
|
-
tzinfo (~> 2.0, >= 2.0.5)
|
25
|
-
uri (>= 0.13.1)
|
26
|
-
addressable (2.8.7)
|
27
|
-
public_suffix (>= 2.0.2, < 7.0)
|
28
|
-
backticks (1.0.5)
|
29
|
-
base64 (0.3.0)
|
30
|
-
benchmark (0.4.1)
|
31
|
-
bigdecimal (3.2.1)
|
32
|
-
blockenspiel (0.5.0)
|
33
|
-
colored (1.2)
|
34
|
-
colored2 (4.0.3)
|
35
|
-
concurrent-ruby (1.3.5)
|
36
|
-
connection_pool (2.5.3)
|
37
|
-
cri (2.15.12)
|
38
|
-
deep_merge (1.2.2)
|
39
|
-
diff-lcs (1.6.2)
|
40
|
-
drb (2.2.3)
|
41
|
-
erubi (1.13.1)
|
42
|
-
facter (4.10.0)
|
43
|
-
hocon (~> 1.3)
|
44
|
-
thor (>= 1.0.1, < 1.3)
|
45
|
-
faraday (2.13.1)
|
46
|
-
faraday-net_http (>= 2.0, < 3.5)
|
47
|
-
json
|
48
|
-
logger
|
49
|
-
faraday-follow_redirects (0.3.0)
|
50
|
-
faraday (>= 1, < 3)
|
51
|
-
faraday-net_http (3.4.0)
|
52
|
-
net-http (>= 0.5.0)
|
53
|
-
fast_gettext (2.4.0)
|
54
|
-
prime
|
55
|
-
forwardable (1.3.3)
|
56
|
-
getoptlong (0.2.1)
|
57
|
-
gettext (3.5.1)
|
58
|
-
erubi
|
59
|
-
locale (>= 2.0.5)
|
60
|
-
prime
|
61
|
-
racc
|
62
|
-
text (>= 1.3.0)
|
63
|
-
gettext-setup (1.1.0)
|
64
|
-
fast_gettext (~> 2.1)
|
65
|
-
gettext (~> 3.4)
|
66
|
-
locale
|
67
|
-
git (3.1.0)
|
68
|
-
activesupport (>= 5.0)
|
69
|
-
addressable (~> 2.8)
|
70
|
-
process_executer (~> 1.3)
|
71
|
-
rchardet (~> 1.9)
|
72
|
-
hocon (1.4.0)
|
73
|
-
i18n (1.14.7)
|
74
|
-
concurrent-ruby (~> 1.0)
|
75
|
-
json (2.12.2)
|
76
|
-
jwt (2.10.1)
|
77
|
-
base64
|
78
|
-
little-plugger (1.1.4)
|
79
|
-
locale (2.1.4)
|
80
|
-
log4r (1.1.10)
|
81
|
-
logger (1.7.0)
|
82
|
-
logging (2.4.0)
|
83
|
-
little-plugger (~> 1.1)
|
84
|
-
multi_json (~> 1.14)
|
85
|
-
minitar (1.0.2)
|
86
|
-
minitest (5.25.5)
|
87
|
-
mocha (2.7.1)
|
88
|
-
ruby2_keywords (>= 0.0.5)
|
89
|
-
multi_json (1.15.0)
|
90
|
-
net-http (0.6.0)
|
91
|
-
uri
|
92
|
-
onceover (3.22.0)
|
93
|
-
backticks (>= 1.0.2)
|
94
|
-
colored (>= 1.2)
|
95
|
-
cri (>= 2.6)
|
96
|
-
deep_merge (>= 1.0.0)
|
97
|
-
git
|
98
|
-
logging (>= 2.0.0)
|
99
|
-
multi_json (>= 1.10)
|
100
|
-
parallel_tests (>= 2.0.0)
|
101
|
-
puppet (>= 4.0)
|
102
|
-
puppetlabs_spec_helper (>= 0.4.0)
|
103
|
-
r10k (>= 2.1.0)
|
104
|
-
rake (>= 10.0.0)
|
105
|
-
rspec (>= 3.0.0)
|
106
|
-
rspec-puppet (>= 2.4.0)
|
107
|
-
rspec_junit_formatter (>= 0.2.0)
|
108
|
-
terminal-table (>= 1.8.0)
|
109
|
-
versionomy (>= 0.5.0)
|
110
|
-
parallel (1.27.0)
|
111
|
-
parallel_tests (5.3.0)
|
112
|
-
parallel
|
113
|
-
pathspec (2.1.0)
|
114
|
-
prime (0.1.3)
|
115
|
-
forwardable
|
116
|
-
singleton
|
117
|
-
process_executer (1.3.0)
|
118
|
-
public_suffix (6.0.2)
|
119
|
-
puppet (8.10.0)
|
120
|
-
concurrent-ruby (~> 1.0)
|
121
|
-
deep_merge (~> 1.0)
|
122
|
-
facter (>= 4.3.0, < 5)
|
123
|
-
fast_gettext (>= 2.1, < 4)
|
124
|
-
getoptlong (~> 0.2.0)
|
125
|
-
locale (~> 2.1)
|
126
|
-
multi_json (~> 1.13)
|
127
|
-
puppet-resource_api (~> 1.5)
|
128
|
-
scanf (~> 1.0)
|
129
|
-
semantic_puppet (~> 1.0)
|
130
|
-
puppet-lint (4.3.0)
|
131
|
-
puppet-resource_api (1.9.0)
|
132
|
-
hocon (>= 1.0)
|
133
|
-
puppet-strings (4.1.3)
|
134
|
-
rgen (~> 0.9)
|
135
|
-
yard (~> 0.9, < 0.9.37)
|
136
|
-
puppet-syntax (4.1.1)
|
137
|
-
puppet (>= 7, < 9)
|
138
|
-
rake (~> 13.1)
|
139
|
-
puppet_forge (6.0.0)
|
140
|
-
faraday (~> 2.0)
|
141
|
-
faraday-follow_redirects (~> 0.3.0)
|
142
|
-
minitar (~> 1.0, >= 1.0.2)
|
143
|
-
semantic_puppet (~> 1.0)
|
144
|
-
puppetlabs_spec_helper (8.0.0)
|
145
|
-
mocha (>= 1.0, < 3)
|
146
|
-
pathspec (>= 0.2, < 3)
|
147
|
-
puppet-lint (~> 4.0)
|
148
|
-
puppet-syntax (~> 4.1, >= 4.1.1)
|
149
|
-
rspec-github (~> 2.0)
|
150
|
-
rspec-puppet (~> 5.0)
|
151
|
-
r10k (5.0.0)
|
152
|
-
colored2 (~> 4.0)
|
153
|
-
cri (>= 2.15.10)
|
154
|
-
gettext-setup (>= 0.24, < 2.0)
|
155
|
-
jwt (>= 2.2.3, < 3)
|
156
|
-
log4r (= 1.1.10)
|
157
|
-
minitar (>= 0.9, < 2)
|
158
|
-
multi_json (~> 1.10)
|
159
|
-
puppet_forge (>= 4.1.0, < 7)
|
160
|
-
racc (1.8.1)
|
161
|
-
rake (13.3.0)
|
162
|
-
rchardet (1.9.0)
|
163
|
-
rgen (0.10.2)
|
164
|
-
rspec (3.13.1)
|
165
|
-
rspec-core (~> 3.13.0)
|
166
|
-
rspec-expectations (~> 3.13.0)
|
167
|
-
rspec-mocks (~> 3.13.0)
|
168
|
-
rspec-core (3.13.4)
|
169
|
-
rspec-support (~> 3.13.0)
|
170
|
-
rspec-expectations (3.13.5)
|
171
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
172
|
-
rspec-support (~> 3.13.0)
|
173
|
-
rspec-github (2.4.0)
|
174
|
-
rspec-core (~> 3.0)
|
175
|
-
rspec-mocks (3.13.5)
|
176
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
177
|
-
rspec-support (~> 3.13.0)
|
178
|
-
rspec-puppet (5.0.0)
|
179
|
-
rspec (~> 3.0)
|
180
|
-
rspec-support (3.13.4)
|
181
|
-
rspec_junit_formatter (0.6.0)
|
182
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
183
|
-
ruby2_keywords (0.0.5)
|
184
|
-
scanf (1.0.0)
|
185
|
-
securerandom (0.4.1)
|
186
|
-
semantic_puppet (1.1.1)
|
187
|
-
singleton (0.3.0)
|
188
|
-
terminal-table (4.0.0)
|
189
|
-
unicode-display_width (>= 1.1.1, < 4)
|
190
|
-
text (1.3.1)
|
191
|
-
thor (1.2.2)
|
192
|
-
tzinfo (2.0.6)
|
193
|
-
concurrent-ruby (~> 1.0)
|
194
|
-
unicode-display_width (3.1.4)
|
195
|
-
unicode-emoji (~> 4.0, >= 4.0.4)
|
196
|
-
unicode-emoji (4.0.4)
|
197
|
-
uri (1.0.3)
|
198
|
-
versionomy (0.5.0)
|
199
|
-
blockenspiel (~> 0.5)
|
200
|
-
yard (0.9.36)
|
201
|
-
|
202
|
-
PLATFORMS
|
203
|
-
x86_64-linux
|
204
|
-
|
205
|
-
DEPENDENCIES
|
206
|
-
bundler (~> 2.4)
|
207
|
-
onceover-codequality!
|
208
|
-
rake (~> 13.0)
|
209
|
-
rspec (~> 3.12)
|
210
|
-
|
211
|
-
BUNDLED WITH
|
212
|
-
2.4.17
|