appbundle-updater 0.2.8 → 0.2.9

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: bb4859dc5ffa025d33dd18194e7a3ab65fb52896
4
- data.tar.gz: bfe872da38983ca54c0159295347b9b8dfe5ece8
3
+ metadata.gz: 3c6ecf6d89cd8801d06690769f8f46892fad91b8
4
+ data.tar.gz: 8c8303a2f0b9bf6f18c60849b7494a950e1d8480
5
5
  SHA512:
6
- metadata.gz: b478e29a6cd5bf74683b5f921a7176007a1570567cbc32b53a581609f957bc1ea8cb84fe65f5edf9a28d34120985b7a75244e91b14b7f12f08f15d94ed0017f6
7
- data.tar.gz: be1252403db6d1b3358df63c345bdfa6f51df5d6677f037c2efbefa1b4929fe5f4e41a2eea1645150dcf6857f309569a27719be94b92053d222f6c7cf72f21fb
6
+ metadata.gz: 6149ec7b63073ce9e9503563228c8e167720253a437c7792611b231c19218f313a8ef7b02c577de4733991936c27b83ef8d233ca43a05032eddefa3475005460
7
+ data.tar.gz: 39904219eb570316377c42c1d97f4e1172b63e5a4648e142a95517cb87e56c6821eec01f16118062570b12776430cf399e864d17cc5926b3711224668b078462
@@ -1,11 +1,11 @@
1
1
  # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/chef/appbundle-updater/tree/HEAD)
4
-
5
- [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.7...HEAD)
3
+ ## [v0.2.8](https://github.com/chef/appbundle-updater/tree/v0.2.8) (2016-01-19)
4
+ [Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.7...v0.2.8)
6
5
 
7
6
  **Merged pull requests:**
8
7
 
8
+ - install compilers and git on rhel/debian [\#12](https://github.com/chef/appbundle-updater/pull/12) ([lamont-granquist](https://github.com/lamont-granquist))
9
9
  - fix for chef-12.6.0 and version bump [\#11](https://github.com/chef/appbundle-updater/pull/11) ([lamont-granquist](https://github.com/lamont-granquist))
10
10
 
11
11
  ## [v0.2.7](https://github.com/chef/appbundle-updater/tree/v0.2.7) (2015-12-30)
@@ -64,9 +64,10 @@ def install_package_dependencies
64
64
  banner("Installing Packages")
65
65
  case `ohai platform_family`
66
66
  when /debian/
67
- run("apt-get install build-essential git")
67
+ ENV["DEBIAN_FRONTEND"] = "noninteractive"
68
+ run("apt-get -q -y install build-essential git")
68
69
  when /fedora/, /rhel/
69
- run("yum install gcc make git")
70
+ run("yum -y install gcc make git")
70
71
  else
71
72
  puts "i do not know how to install compilers and git on this platform..."
72
73
  end
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.2.8"
2
+ VERSION = "0.2.9"
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: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist