appbundle-updater 1.0.5 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35e852a7a413c901a80af3afb028df575256847915bf2eda64eefd768a3ba358
4
- data.tar.gz: 2dbd4e1a942a872ca0fe06f2929b1c52971aa2525d39b146e154acf5f507a717
3
+ metadata.gz: 9a53986875f10f903beebb1f94792bad155512ca54e467be0bd8ff3dea1f199f
4
+ data.tar.gz: 95446fe1f52af383d31fa0c12b264ba29b47bb7642773c1a421d6bbc805718eb
5
5
  SHA512:
6
- metadata.gz: 34fdca0eabb8c1561e1b159b8854b52e61f90e70e185f38c001e610b49f25850a4fed75bd16f4f4df3538685d860bbc653f0f5835bbd1fbf8c1792b97cc428fe
7
- data.tar.gz: fc7aad393794a2389cd16fc07f17ba9abd55b0e8bd1d1bdb4bfee443c6c001a50091f1891da3de5067463ab93045299b7de3aeb08479ac346a40ea1e21eda315
6
+ metadata.gz: 55dd93c052162572c636c7cfb68e46ae9789325ac0ff2ce4d748b7de28d5ba0273d6ee70a09c2e5c327631f521ad5b75257ba32ee0a83d0fd7963a146a8027b8
7
+ data.tar.gz: 1289a47d0067e8c36b8a1be0e9b16573b377a0011033127e73ea092e9e7c40287662a9207731b46133919e1d46235444d4dfb72cf35cd6b92264b2841e4b2b43
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 1.0.5 -->
4
- ## [v1.0.5](https://github.com/chef/appbundle-updater/tree/v1.0.5) (2020-05-29)
3
+ <!-- latest_release 1.0.6 -->
4
+ ## [v1.0.6](https://github.com/chef/appbundle-updater/tree/v1.0.6) (2020-05-29)
5
5
 
6
6
  #### Merged Pull Requests
7
- - switch from `open` to `URI.open` [#54](https://github.com/chef/appbundle-updater/pull/54) ([lamont-granquist](https://github.com/lamont-granquist))
7
+ - Just use `rake install` on windows [#55](https://github.com/chef/appbundle-updater/pull/55) ([lamont-granquist](https://github.com/lamont-granquist))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=1.0.4 -->
10
+ <!-- release_rollup since=1.0.5 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - switch from `open` to `URI.open` [#54](https://github.com/chef/appbundle-updater/pull/54) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.5 -->
14
+ - Just use `rake install` on windows [#55](https://github.com/chef/appbundle-updater/pull/55) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 1.0.6 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v1.0.5](https://github.com/chef/appbundle-updater/tree/v1.0.5) (2020-05-29)
19
+
20
+ #### Merged Pull Requests
21
+ - switch from `open` to `URI.open` [#54](https://github.com/chef/appbundle-updater/pull/54) ([lamont-granquist](https://github.com/lamont-granquist))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v1.0.4](https://github.com/chef/appbundle-updater/tree/v1.0.4) (2020-04-28)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - update gem groups in appbundler [#53](https://github.com/chef/appbundle-updater/pull/53) ([lamont-granquist](https://github.com/lamont-granquist))
22
- <!-- latest_stable_release -->
23
28
 
24
29
  ## [v1.0.3](https://github.com/chef/appbundle-updater/tree/v1.0.3) (2020-03-12)
25
30
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.5
1
+ 1.0.6
@@ -130,12 +130,7 @@ App = Struct.new(:name, :repo, :bundle_without, :install_commands, :gems) do
130
130
  end
131
131
  end
132
132
 
133
- chef_install_command =
134
- if windows?
135
- "#{bin_dir.join("gem")} build chef-windows.gemspec & #{bin_dir.join("gem")} install chef*.gem --no-document"
136
- else
137
- "#{bin_dir.join("bundle")} exec #{bin_dir.join("rake")} install"
138
- end
133
+ chef_install_command = "#{bin_dir.join("bundle")} exec #{bin_dir.join("rake")} install"
139
134
 
140
135
  CHEFDK_APPS = [
141
136
  App.new(
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "1.0.5".freeze
2
+ VERSION = "1.0.6".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundle-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist