appbundle-updater 0.2.5 → 0.2.6
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/CHANGELOG.md +1 -12
- data/bin/appbundle-updater +8 -1
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a2ae5e08b6600876bbf9319aa49b16852ed3ec3
|
|
4
|
+
data.tar.gz: 67c7ed259427f5de378b254e6ac505d484c8c8d7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c95cea7def8e75c94440a7d714d89ce7b01fbef012962b02174e47d9c0a9d8cb89e541a507118504ce9b55a366b7c61f60a62884ed1fcc22526e36e4c2c376db
|
|
7
|
+
data.tar.gz: df135ccb7cbf351be2a13231215b15035444bc7cd7085922fc7180603cfdd37c8271b52136f9597c58dd8e2f73df362ad8cf354ac9dcf481ec6adf5ce25449e3
|
data/CHANGELOG.md
CHANGED
|
@@ -2,18 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased](https://github.com/chef/appbundle-updater/tree/HEAD)
|
|
4
4
|
|
|
5
|
-
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.
|
|
6
|
-
|
|
7
|
-
**Merged pull requests:**
|
|
8
|
-
|
|
9
|
-
- correct windows fix is setting binmode [\#10](https://github.com/chef/appbundle-updater/pull/10) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
10
|
-
- remove stray Dir.chdir call on windows [\#9](https://github.com/chef/appbundle-updater/pull/9) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
11
|
-
|
|
12
|
-
## [v0.2.4](https://github.com/chef/appbundle-updater/tree/v0.2.4) (2015-09-29)
|
|
13
|
-
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.3...v0.2.4)
|
|
14
|
-
|
|
15
|
-
## [v0.2.3](https://github.com/chef/appbundle-updater/tree/v0.2.3) (2015-09-29)
|
|
16
|
-
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.2...v0.2.3)
|
|
5
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.2...HEAD)
|
|
17
6
|
|
|
18
7
|
**Merged pull requests:**
|
|
19
8
|
|
data/bin/appbundle-updater
CHANGED
|
@@ -98,6 +98,13 @@ App = Struct.new(:name, :repo, :bundle_without, :install_command) do
|
|
|
98
98
|
end
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
+
chef_install_command =
|
|
102
|
+
if windows?
|
|
103
|
+
"#{bin_dir.join("gem")} build chef-windows.gemspec & #{bin_dir.join("gem")} install chef*.gem --no-ri --no-rdoc"
|
|
104
|
+
else
|
|
105
|
+
"#{bin_dir.join("rake")} install"
|
|
106
|
+
end
|
|
107
|
+
|
|
101
108
|
CHEFDK_APPS = [
|
|
102
109
|
App.new(
|
|
103
110
|
"berkshelf",
|
|
@@ -109,7 +116,7 @@ CHEFDK_APPS = [
|
|
|
109
116
|
"chef",
|
|
110
117
|
"chef/chef",
|
|
111
118
|
"server docgen test development",
|
|
112
|
-
|
|
119
|
+
chef_install_command,
|
|
113
120
|
),
|
|
114
121
|
App.new(
|
|
115
122
|
"chef-dk",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appbundle-updater
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lamont-granquist
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Updates appbundled apps in Chef's omnibus packages
|
|
14
14
|
email:
|