appbundle-updater 0.6.17 → 0.6.18

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
  SHA256:
3
- metadata.gz: 70a345f260402b3c5e6a5d6906fbaf44ee098724c4873d337b571445e214c55c
4
- data.tar.gz: 5ff2c2a4ec08ea68c46a0d4e9fe2a3e0cb238ffdfc45410ca3e1d89ecffa122c
3
+ metadata.gz: 7242b26435741d855c0027ae555306d22afe1bc435dd0dedba545eb7a8e2ea2e
4
+ data.tar.gz: a7f8fd4aaae104a61f3db9d65da9ed4f43e7a8ef74a885ef28e285b979eea2be
5
5
  SHA512:
6
- metadata.gz: 159a3d083859752c48a43637e373b9385a1358b788f39e6354d3b3c572109bd8a240b8f96246cfce5e6498b71348da504671f33d49a0391962c5d262ef4c2af0
7
- data.tar.gz: 40859b52914671a4b530eb9bfdf838a432e78f18c77ec2be645bf21c1dab4e62f1ee8951267142e790f98072d9a076a7024a529add11b6377596c2cffab1df51
6
+ metadata.gz: 05f098020ccc36956ec963e62e55204d7fe93405956839db8e74afb5a932523c20c9699f25edd30f80cbde3a4b815bc9968775cb6c11b6039a37ccce49dd5730
7
+ data.tar.gz: 15603d8d4f33006e0dd1f9cd8fd60e1425ffcc336e4af167259e450414448f247a8ad6585d930c56077beb1ed70978e8f8257b391f3c8371356c60b2c4257320
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 0.6.17 -->
4
- ## [v0.6.17](https://github.com/chef/appbundle-updater/tree/v0.6.17) (2019-09-30)
3
+ <!-- latest_release 0.6.18 -->
4
+ ## [v0.6.18](https://github.com/chef/appbundle-updater/tree/v0.6.18) (2020-03-11)
5
5
 
6
6
  #### Merged Pull Requests
7
- - Don&#39;t exclude the development group for ohai [#45](https://github.com/chef/appbundle-updater/pull/45) ([tas50](https://github.com/tas50))
7
+ - need output logging so that we can debug [#47](https://github.com/chef/appbundle-updater/pull/47) ([lamont-granquist](https://github.com/lamont-granquist))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=0.6.16 -->
10
+ <!-- release_rollup since=0.6.17 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - Don&#39;t exclude the development group for ohai [#45](https://github.com/chef/appbundle-updater/pull/45) ([tas50](https://github.com/tas50)) <!-- 0.6.17 -->
14
+ - need output logging so that we can debug [#47](https://github.com/chef/appbundle-updater/pull/47) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.18 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v0.6.17](https://github.com/chef/appbundle-updater/tree/v0.6.17) (2019-09-30)
19
+
20
+ #### Merged Pull Requests
21
+ - Don&#39;t exclude the development group for ohai [#45](https://github.com/chef/appbundle-updater/pull/45) ([tas50](https://github.com/tas50))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v0.6.16](https://github.com/chef/appbundle-updater/tree/v0.6.16) (2019-09-30)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - Update the groups we ignore in the bundle installs [#44](https://github.com/chef/appbundle-updater/pull/44) ([tas50](https://github.com/tas50))
22
- <!-- latest_stable_release -->
23
28
 
24
29
  ## [v0.6.15](https://github.com/chef/appbundle-updater/tree/v0.6.15) (2019-07-18)
25
30
 
data/Gemfile CHANGED
@@ -18,9 +18,3 @@ group :debug do
18
18
  gem "pry-byebug"
19
19
  gem "pry-stack_explorer"
20
20
  end
21
-
22
- instance_eval(ENV["GEMFILE_MOD"]) if ENV["GEMFILE_MOD"]
23
-
24
- # If you want to load debugging tools into the bundle exec sandbox,
25
- # add these additional dependencies into Gemfile.local
26
- eval_gemfile(__FILE__ + ".local") if File.exist?(__FILE__ + ".local")
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.17
1
+ 0.6.18
@@ -56,6 +56,8 @@ def run(cmd)
56
56
  output = `#{cmd} 2>&1` # FIXME: bash/zsh-ism, will not work on csh
57
57
  unless $?.exited? && $?.exitstatus == 0
58
58
  raise("Command [#{cmd}] failed!\n\n---BEGIN OUTPUT--\n#{output}\n---END OUTPUT--\n")
59
+ else
60
+ puts "---BEGIN OUTPUT--\n#{output}\n---END OUTPUT--\n"
59
61
  end
60
62
 
61
63
  ENV_KEYS.each { |key| ENV[key] = ENV.delete("_YOLO_#{key}") }
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.6.17".freeze
2
+ VERSION = "0.6.18".freeze
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.6.17
4
+ version: 0.6.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-30 00:00:00.000000000 Z
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Updates appbundled apps in Chef's omnibus packages
14
14
  email: