onceover-codequality 0.11.0 → 0.12.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/Gemfile.lock +2 -3
- data/README.md +23 -22
- data/lib/onceover/codequality/version.rb +1 -1
- data/onceover-codequality.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cb70f1ea443506d60116104517604e1847d9f00a2786b99cf27156a00ea901f6
|
|
4
|
+
data.tar.gz: '076482d23ef1be7ba80baaea9897c4e0b425bd9f1b0a4cca2988bc81ba4694c4'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a1aee75267189003cc3e677307caa516b474581f114ea40f8fcac7c565b3c5170d74c06958c94b05527ada280d06297c8db6afd96e10e7959278a2b5558c76b
|
|
7
|
+
data.tar.gz: e1537af28782c94153899a594c221260ae5072a035833416505f29cfc0027ff703917f3f5d8914d839433ea5e3531490a029893e0ad0ce3bf9ab317b226f82d6
|
data/Gemfile.lock
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
onceover-codequality (0.
|
|
4
|
+
onceover-codequality (0.12.0)
|
|
5
5
|
onceover (~> 3)
|
|
6
|
+
puppet-lint (~> 4)
|
|
6
7
|
puppet-strings (~> 4)
|
|
7
8
|
puppet-syntax (~> 3)
|
|
8
|
-
puppetlabs-puppet-lint (~> 5)
|
|
9
9
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: https://rubygems.org/
|
|
@@ -126,7 +126,6 @@ GEM
|
|
|
126
126
|
faraday_middleware (~> 1.0)
|
|
127
127
|
minitar
|
|
128
128
|
semantic_puppet (~> 1.0)
|
|
129
|
-
puppetlabs-puppet-lint (5.0.0)
|
|
130
129
|
puppetlabs_spec_helper (6.0.1)
|
|
131
130
|
mocha (~> 1.0)
|
|
132
131
|
pathspec (>= 0.2, < 2.0.0)
|
data/README.md
CHANGED
|
@@ -99,26 +99,6 @@ $ echo $?
|
|
|
99
99
|
1
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
-
## Developing
|
|
103
|
-
|
|
104
|
-
### How to run tests
|
|
105
|
-
|
|
106
|
-
```shell
|
|
107
|
-
bundle exec rake spec
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### How to build gem
|
|
111
|
-
|
|
112
|
-
```shell
|
|
113
|
-
gem build onceover-codequality.gemspec
|
|
114
|
-
```
|
|
115
|
-
|
|
116
|
-
### How to upload to rubygems.org
|
|
117
|
-
|
|
118
|
-
```shell
|
|
119
|
-
gem push XXX.gem
|
|
120
|
-
```
|
|
121
|
-
|
|
122
102
|
## FAQ
|
|
123
103
|
|
|
124
104
|
**`WARN: Unresolved specs during Gem::Specification.reset`?**
|
|
@@ -149,8 +129,29 @@ $ bundle exec onceover run codequality
|
|
|
149
129
|
|
|
150
130
|
## Development
|
|
151
131
|
|
|
152
|
-
|
|
132
|
+
### Writing your own onceover plugins
|
|
133
|
+
|
|
134
|
+
Have a look at [helloworld plugin](https://github.com/declarativesystems/onceover-helloworld) if you want to have a go at writing a plugin of your own.
|
|
135
|
+
|
|
136
|
+
### How to run tests
|
|
137
|
+
|
|
138
|
+
```shell
|
|
139
|
+
bundle exec rake spec
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### How to build gem
|
|
143
|
+
|
|
144
|
+
```shell
|
|
145
|
+
gem build onceover-codequality.gemspec
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
### How to upload to rubygems.org
|
|
149
|
+
|
|
150
|
+
```shell
|
|
151
|
+
gem push XXX.gem
|
|
152
|
+
```
|
|
153
153
|
|
|
154
154
|
## Contributing
|
|
155
155
|
|
|
156
|
-
|
|
156
|
+
* [This project is looking for a maintainer](https://github.com/declarativesystems/onceover-codequality/issues/21)
|
|
157
|
+
* Bug reports and pull requests welcome
|
|
@@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
|
|
27
27
|
spec.add_runtime_dependency 'onceover', '~> 3'
|
|
28
28
|
spec.add_runtime_dependency 'puppet-syntax', '~> 3'
|
|
29
|
-
spec.add_runtime_dependency '
|
|
29
|
+
spec.add_runtime_dependency 'puppet-lint', '~> 4'
|
|
30
30
|
spec.add_runtime_dependency 'puppet-strings', '~> 4'
|
|
31
31
|
end
|
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: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Declarative Systems
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-11-
|
|
11
|
+
date: 2023-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -81,19 +81,19 @@ dependencies:
|
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '3'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
84
|
+
name: puppet-lint
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '
|
|
89
|
+
version: '4'
|
|
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: '4'
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: puppet-strings
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|