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 +4 -4
- data/CHANGELOG.md +11 -6
- data/VERSION +1 -1
- data/bin/appbundle-updater +1 -6
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9a53986875f10f903beebb1f94792bad155512ca54e467be0bd8ff3dea1f199f
|
|
4
|
+
data.tar.gz: 95446fe1f52af383d31fa0c12b264ba29b47bb7642773c1a421d6bbc805718eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55dd93c052162572c636c7cfb68e46ae9789325ac0ff2ce4d748b7de28d5ba0273d6ee70a09c2e5c327631f521ad5b75257ba32ee0a83d0fd7963a146a8027b8
|
|
7
|
+
data.tar.gz: 1289a47d0067e8c36b8a1be0e9b16573b377a0011033127e73ea092e9e7c40287662a9207731b46133919e1d46235444d4dfb72cf35cd6b92264b2841e4b2b43
|
data/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
# appbundle-updater Change Log
|
|
2
2
|
|
|
3
|
-
<!-- latest_release 1.0.
|
|
4
|
-
## [v1.0.
|
|
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
|
-
-
|
|
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.
|
|
10
|
+
<!-- release_rollup since=1.0.5 -->
|
|
11
11
|
### Changes not yet released to rubygems.org
|
|
12
12
|
|
|
13
13
|
#### Merged Pull Requests
|
|
14
|
-
-
|
|
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.
|
|
1
|
+
1.0.6
|
data/bin/appbundle-updater
CHANGED
|
@@ -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(
|