goodcheck 2.2.0 → 2.3.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/CHANGELOG.md +4 -0
- data/Dockerfile +2 -0
- data/README.md +11 -8
- data/Rakefile +1 -1
- data/lib/goodcheck/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 51682c0d11644021167e616c740ab36482415812f4c8406337a2c4a477f85eb1
|
|
4
|
+
data.tar.gz: c9a02f6762a2cff66c9e614f1d8e81d2666344b3022878adbcadf524865cea6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '079743d6a8e0d8af3b45e0bdcfb39c88535cd8983ee56f1795072853a43cd0c34e89446ac35d7c45fbae8825c22e245f3f7a9200fb5ab8ac801929ebbac9583f'
|
|
7
|
+
data.tar.gz: 5133535be14b9b3c97ce80db8b1b052db531aedfa833e887f35db50633ed67a5e851bdefa0b91865433d446b6273d24a4d1dc20635d8010087c0293c9e4dac1f
|
data/CHANGELOG.md
CHANGED
data/Dockerfile
CHANGED
data/README.md
CHANGED
|
@@ -164,7 +164,7 @@ pattern:
|
|
|
164
164
|
|
|
165
165
|
The variable binding consists of *variable name* and *variable type*, where `color` and `string` in the example above respectively. You have to add a key of the *variable name* in `where` attribute.
|
|
166
166
|
|
|
167
|
-
We have 8
|
|
167
|
+
We have 8 built-in patterns:
|
|
168
168
|
|
|
169
169
|
* `string`
|
|
170
170
|
* `int`
|
|
@@ -270,7 +270,7 @@ rules:
|
|
|
270
270
|
```
|
|
271
271
|
|
|
272
272
|
You can continue existing `pattern` definitions, but `goodcheck test` against `pattern`s with `glob` does not work.
|
|
273
|
-
If your `pattern` definition includes `glob`,
|
|
273
|
+
If your `pattern` definition includes `glob`, switching `trigger` would make sense.
|
|
274
274
|
|
|
275
275
|
## Importing rules
|
|
276
276
|
|
|
@@ -368,16 +368,19 @@ The cache expires in 3 minutes.
|
|
|
368
368
|
|
|
369
369
|
## Docker Images
|
|
370
370
|
|
|
371
|
-
|
|
372
|
-
|
|
371
|
+
We provide Docker images of Goodcheck so that you can try Goodcheck without installing them.
|
|
372
|
+
Pick a version of Goodcheck from images page.
|
|
373
373
|
|
|
374
|
-
|
|
375
|
-
$ docker pull sider/goodcheck
|
|
374
|
+
- https://hub.docker.com/r/sider/goodcheck/
|
|
376
375
|
|
|
377
|
-
|
|
378
|
-
$ docker
|
|
376
|
+
```bash
|
|
377
|
+
$ docker pull sider/goodcheck:2.3.0
|
|
378
|
+
$ docker run -t --rm -v "$(pwd):/work" sider/goodcheck:2.3.0 check
|
|
379
379
|
```
|
|
380
380
|
|
|
381
|
+
We don't recommend using `latest` tag.
|
|
382
|
+
It updates every time we push a commit to `master` branch, and may include a version which is not ready for publish.
|
|
383
|
+
|
|
381
384
|
## Development
|
|
382
385
|
|
|
383
386
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/Rakefile
CHANGED
data/lib/goodcheck/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: goodcheck
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|