goodcheck 2.2.0 → 2.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0cf1d3cf38b98eeec351ff53dbd3e1e22f92bff85c57db2b2dd59239c107f9ac
4
- data.tar.gz: 8b36acf42270ae6f9cd03fbf21a95afc8df28b8ddf6e589e027c71d79aab6068
3
+ metadata.gz: 51682c0d11644021167e616c740ab36482415812f4c8406337a2c4a477f85eb1
4
+ data.tar.gz: c9a02f6762a2cff66c9e614f1d8e81d2666344b3022878adbcadf524865cea6f
5
5
  SHA512:
6
- metadata.gz: 0f6116c681e7486ff13865309acf7e0af52c0bf078bac0321370581856fb4547db8a43ee4d4a507b2d51758a6c452f47b8fcb98ecd3ebed8966bb59c500457e4
7
- data.tar.gz: f2ee54122a3c75e4965a5407aa8b1377cd1625a4ae2fcf469a72a8645a082a72a1f6b5a443c9fb52155b42e4a1f7204aa70404c6407d88a7c231fe80c3aaf148
6
+ metadata.gz: '079743d6a8e0d8af3b45e0bdcfb39c88535cd8983ee56f1795072853a43cd0c34e89446ac35d7c45fbae8825c22e245f3f7a9200fb5ab8ac801929ebbac9583f'
7
+ data.tar.gz: 5133535be14b9b3c97ce80db8b1b052db531aedfa833e887f35db50633ed67a5e851bdefa0b91865433d446b6273d24a4d1dc20635d8010087c0293c9e4dac1f
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 2.3.0 (2019-07-02)
6
+
7
+ * Fix Docker image [#58](https://github.com/sider/goodcheck/pull/58)
8
+
5
9
  ## 2.2.0 (2019-06-25)
6
10
 
7
11
  * Allow testing numeric variables with regexp
data/Dockerfile CHANGED
@@ -19,3 +19,5 @@ RUN bundle install && bundle exec rake install
19
19
 
20
20
  RUN mkdir /work
21
21
  WORKDIR /work
22
+
23
+ ENTRYPOINT ["bundle", "exec", "goodcheck"]
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 builtin patterns:
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`, swithing `trigger` would make sense.
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
- You can use [Docker images](https://hub.docker.com/r/sider/goodcheck/) to use Goodcheck.
372
- For example:
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
- ```bash
375
- $ docker pull sider/goodcheck
374
+ - https://hub.docker.com/r/sider/goodcheck/
376
375
 
377
- $ cd /path/to/your/project
378
- $ docker run -it --rm -v "$(pwd):/work" sider/goodcheck goodcheck check
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
@@ -11,6 +11,6 @@ task :default => :test
11
11
 
12
12
  namespace :docker do
13
13
  task :build do
14
- sh 'docker', 'build', '-t', 'goodcheck:latest', '.'
14
+ sh 'docker', 'build', '-t', 'sider/goodcheck:dev', '.'
15
15
  end
16
16
  end
@@ -1,3 +1,3 @@
1
1
  module Goodcheck
2
- VERSION = "2.2.0"
2
+ VERSION = "2.3.0"
3
3
  end
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.2.0
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-06-25 00:00:00.000000000 Z
11
+ date: 2019-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler