kitchen_hooks 1.4.0 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Readme.md +1 -0
- data/VERSION +1 -1
- data/lib/kitchen_hooks/helpers.rb +3 -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: 5522a519bc2a81ce6679c736b8cb395582324a11
|
4
|
+
data.tar.gz: 96adc104e8f1a7f117b01687f3a4e98967ea0be4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab3ea39648393a2cbdf4e9c5cadb1bbca72b83871234aa7ce8eba271d71a1981cb4f87e158723c56d80dcbc0bba3508b1c17a1e98a20be2095f7bceffc466fd0
|
7
|
+
data.tar.gz: 34b4f700095cf1780821d079ea8389ade3e676ca0d5303363ffda00ac0df1e0613dc4336fe1b7adf8256db3971472408c46382f38cd0efe5019cf40f1372ecc2
|
data/Readme.md
CHANGED
@@ -42,6 +42,7 @@ Use the `server` command to start the WebHook receiver:
|
|
42
42
|
### 1.4
|
43
43
|
|
44
44
|
* Simplified configuration format (breaking!)
|
45
|
+
* Disable `berks upload` functionality (needs more testing)
|
45
46
|
* Added support for HipChat notifications when configured
|
46
47
|
* Linked to tag name with `.../commits/TAG` where appropriate
|
47
48
|
* Replaced "modified" with more appropriate verb where appropriate
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.1
|
@@ -63,7 +63,9 @@ module KitchenHooks
|
|
63
63
|
client_name: ridley.client_name,
|
64
64
|
client_key: ridley.client_key
|
65
65
|
berksfile = Berkshelf::Berksfile.from_options(options)
|
66
|
-
|
66
|
+
|
67
|
+
# # TODO: Figure out why "berks upload" takes so damn long
|
68
|
+
# berksfile.upload([], options.symbolize_keys)
|
67
69
|
end
|
68
70
|
|
69
71
|
def tmp_clone event, commit_method, &block
|