onceover-codequality 0.10.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 +1 -1
- data/README.md +23 -2
- data/lib/onceover/codequality/version.rb +1 -1
- metadata +7 -7
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
data/README.md
CHANGED
|
@@ -129,8 +129,29 @@ $ bundle exec onceover run codequality
|
|
|
129
129
|
|
|
130
130
|
## Development
|
|
131
131
|
|
|
132
|
-
|
|
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
|
+
```
|
|
133
153
|
|
|
134
154
|
## Contributing
|
|
135
155
|
|
|
136
|
-
|
|
156
|
+
* [This project is looking for a maintainer](https://github.com/declarativesystems/onceover-codequality/issues/21)
|
|
157
|
+
* Bug reports and pull requests welcome
|
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
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-11-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -108,7 +108,7 @@ dependencies:
|
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '4'
|
|
111
|
-
description:
|
|
111
|
+
description:
|
|
112
112
|
email:
|
|
113
113
|
- sales@declarativesystems.com
|
|
114
114
|
executables: []
|
|
@@ -141,7 +141,7 @@ homepage: https://github.com/declarativesystems/onceover-codequality
|
|
|
141
141
|
licenses:
|
|
142
142
|
- Apache-2.0
|
|
143
143
|
metadata: {}
|
|
144
|
-
post_install_message:
|
|
144
|
+
post_install_message:
|
|
145
145
|
rdoc_options: []
|
|
146
146
|
require_paths:
|
|
147
147
|
- lib
|
|
@@ -156,8 +156,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
156
156
|
- !ruby/object:Gem::Version
|
|
157
157
|
version: '0'
|
|
158
158
|
requirements: []
|
|
159
|
-
rubygems_version: 3.4.
|
|
160
|
-
signing_key:
|
|
159
|
+
rubygems_version: 3.4.10
|
|
160
|
+
signing_key:
|
|
161
161
|
specification_version: 4
|
|
162
162
|
summary: Lint and syntax validation for onceover
|
|
163
163
|
test_files: []
|