appbundle-updater 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ee2af6cee8b6d5c23bf4516458c8ef78c853a94
4
- data.tar.gz: 98b37f27032d5b5a1ad5701b82260d5453f1b534
3
+ metadata.gz: 8a2ae5e08b6600876bbf9319aa49b16852ed3ec3
4
+ data.tar.gz: 67c7ed259427f5de378b254e6ac505d484c8c8d7
5
5
  SHA512:
6
- metadata.gz: afd0e92282999029a0e0864b9e37cb03407e9d33cdf1d5b1b99ea150fcd50ed0f05da6311345c095cf58f05ed697715f4bbde61511c91a98c49be169c35507d4
7
- data.tar.gz: 404499c037445276800aab9f9d585509989b8b1df1c79f06e3ff2f487038648be1f054583cc5194eec4e2abf758990bb774dfa7c0cdd81317afd2476cfa62b27
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.4...HEAD)
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
 
@@ -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
- "#{bin_dir.join("rake")} install",
119
+ chef_install_command,
113
120
  ),
114
121
  App.new(
115
122
  "chef-dk",
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  end
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.5
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-09-29 00:00:00.000000000 Z
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: