knife-chop 0.3.2 → 0.3.3
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 +8 -8
- data/Gemfile.lock +1 -1
- data/Rakefile +3 -1
- data/VERSION +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NTMwN2RlZmE0MDRjOWRjZTAwNGRjYTJiYzMzMTQxYzg2ZmY2OWQ3Mw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZDk2MGM1YjRmNjEzM2FlMjNhZmQ3YmFhMjk0ZWQ3OTIxOGJiNTZmZg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NTA2MGJkNDQ0YTllMGIxYWUyMTIyZTQ2MDMxYTIzMTcyZDFkNjdhZDM1MGI5
|
|
10
|
+
ZjJmY2FhYTkwMDMyNzhkZjM4Yzg0OTU4ZDQ5NDFjZTJlZjNlYmI3OTk1YmQx
|
|
11
|
+
MmMzMTBjYWE0MmVmOTc2MTc3MzM5OTQ0ODI1MWYxNzZjZDI0MWE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YzBlZDAxZjc3OTRhMTY0MjhmYTU2ODFhZmUwMGU3ZWVkODU5ZDExNDcxMzY2
|
|
14
|
+
NjA2NzhjNDBkMmU4YjBiNTk3YjJiZjVlZjk0Mjk2NDlkYmNkZWU5YjBkNWVh
|
|
15
|
+
NWVlNjliYTkzZTNhNDI4MGE3MzE0NTk1ZDY3YTMwOGY4YjA5ZDE=
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -20,7 +20,9 @@ end
|
|
|
20
20
|
|
|
21
21
|
require File.dirname(__FILE__) + '/lib/chef/knife/chop/version'
|
|
22
22
|
desc "Build it, tag it and ship it"
|
|
23
|
-
task :ship => :gem do
|
|
23
|
+
task :ship => [:clobber,:gem] do
|
|
24
|
+
sh("git add -A")
|
|
25
|
+
sh("git commit -m 'Ship #{::Knife::Chop::VERSION}'")
|
|
24
26
|
sh("git tag #{::Knife::Chop::VERSION}")
|
|
25
27
|
sh("git push origin --tags")
|
|
26
28
|
Dir[File.expand_path("../pkg/*.gem", __FILE__)].reverse.each do |built_gem|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|