kitchen_hooks 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Readme.md +0 -1
- data/VERSION +1 -1
- data/lib/kitchen_hooks/helpers.rb +6 -6
- 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: 2c4a82345e6e7e2efa015063d477781a51f60f3b
|
4
|
+
data.tar.gz: 75cc210a146219edc9fe630dd3ad7ada74d3fb41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e828cdbfcd0c4eb01445179f60520dffa9f662999052c3d57c9d585d003ba0172bef3a3ec039408c072b34e488af08388b8a9c8b0b5794f97b2e5c0c23991215
|
7
|
+
data.tar.gz: 693c666e5a58a136f6f6a301606f3607da62183da4313887373127d2db777b0c33207c88da7622ddd9b3dc58958026ffe3061b0c7d3727bbcf4003a0d52f23d5
|
data/Gemfile.lock
CHANGED
data/Readme.md
CHANGED
@@ -42,7 +42,6 @@ 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)
|
46
45
|
* Added support for HipChat notifications when configured
|
47
46
|
* Linked to tag name with `.../commits/TAG` where appropriate
|
48
47
|
* Replaced "modified" with more appropriate verb where appropriate
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.4.
|
1
|
+
1.4.2
|
@@ -56,16 +56,16 @@ module KitchenHooks
|
|
56
56
|
|
57
57
|
def berks_upload knife, options={}
|
58
58
|
ridley = Ridley::from_chef_config knife
|
59
|
-
options
|
60
|
-
berksfile: 'Berksfile',
|
61
|
-
|
59
|
+
options.merge! \
|
60
|
+
berksfile: 'Berksfile',
|
61
|
+
freeze: true,
|
62
|
+
validate: true,
|
62
63
|
server_url: ridley.server_url,
|
63
64
|
client_name: ridley.client_name,
|
64
65
|
client_key: ridley.client_key
|
65
66
|
berksfile = Berkshelf::Berksfile.from_options(options)
|
66
|
-
|
67
|
-
|
68
|
-
# berksfile.upload([], options.symbolize_keys)
|
67
|
+
berksfile.install
|
68
|
+
berksfile.upload [], options
|
69
69
|
end
|
70
70
|
|
71
71
|
def tmp_clone event, commit_method, &block
|