quke 0.2.4 → 0.2.5
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/.travis.yml +10 -0
- data/lib/quke/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71be633be262bebd02d1edb32d74fe4d8ec1266c
|
|
4
|
+
data.tar.gz: ddc6be5e4475ccd512f6bf18903e946f6346225e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3b43a47f55de71aebfd0e96b8e0163821aa49b5850ca7c83cfb6d4c8c7a7e0abf4a2d885ac924d404a058ecfc93d410ecd02d4f979cdd93d5f878dfecd07fbd0
|
|
7
|
+
data.tar.gz: cacd16594d9f0526acd823e704361f73ef96fdea4abcdcb85c83a714744ae2a84d49d3b75ac0c9181878ae68207aa45f22e103d38732cde68a63aedf26f27c77
|
data/.travis.yml
CHANGED
|
@@ -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
|
data/lib/quke/version.rb
CHANGED