quke 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +10 -0
  3. data/lib/quke/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee55abf45e2247042f6ab7207eb0f05cf9c9a69a
4
- data.tar.gz: 67af36388e38b89196fe81b2820cef2addb52300
3
+ metadata.gz: 71be633be262bebd02d1edb32d74fe4d8ec1266c
4
+ data.tar.gz: ddc6be5e4475ccd512f6bf18903e946f6346225e
5
5
  SHA512:
6
- metadata.gz: 6c1689c562bb410f24c9f0bfc92a110d44bbcd6ad99cbca81e3095bd4a295d9631d21e343a80cffd889fb414d0f15b5524469678f1fd1eb4796fb3be10d5df4e
7
- data.tar.gz: bb72e45323ff4890a4914d5f58f74ca055ad532e1b63753fe03f200f2335296884801ee498a60b2beddde37c03f4fa8373829e39516428e4c48eb3cf53865b6e
6
+ metadata.gz: 3b43a47f55de71aebfd0e96b8e0163821aa49b5850ca7c83cfb6d4c8c7a7e0abf4a2d885ac924d404a058ecfc93d410ecd02d4f979cdd93d5f878dfecd07fbd0
7
+ data.tar.gz: cacd16594d9f0526acd823e704361f73ef96fdea4abcdcb85c83a714744ae2a84d49d3b75ac0c9181878ae68207aa45f22e103d38732cde68a63aedf26f27c77
@@ -14,6 +14,16 @@ git:
14
14
  # https://docs.travis-ci.com/user/languages/ruby#Caching-Bundler
15
15
  cache: bundler
16
16
 
17
+ # Using the ability to customise the Travis build to check for 'focus' labels
18
+ # i.e. labels used when working on a spec but which we don't want appearing in
19
+ # the final commit to master
20
+ # Reworking of http://stackoverflow.com/a/30495279/6117745
21
+ # If grep returns 0 (match found), test 0 -eq 1 will return 1.
22
+ # If grep returns 1 (no match found), test 1 -eq 1 will return 0.
23
+ # If grep returns 2 (error), test 2 -eq 1 will return 1.
24
+ before_script: >-
25
+ echo "Checking for use of 'focus' labels in specs" && grep -r --include="*_spec.rb" "focus: true" spec/; test $? -eq 1
26
+
17
27
  # This section was added as per https://docs.travis-ci.com/user/code-climate/
18
28
  # To protect our codeclimate stats rather than adding the Codeclimate API key for ea-area_lookup
19
29
  # in the open we used this guide https://docs.travis-ci.com/user/encryption-keys/ to encryt the
@@ -1,3 +1,3 @@
1
1
  module Quke #:nodoc:
2
- VERSION = '0.2.4'.freeze
2
+ VERSION = '0.2.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quke
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alan Cruikshanks