appbundle-updater 0.2.10 → 0.2.11
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 +7 -0
- data/bin/appbundle-updater +2 -0
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36daa88489d400ea2a55aa62c2be12755d284f5d
|
|
4
|
+
data.tar.gz: 901f54a4ac563155352b910c3a1ce98c071ae5df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 63ab27352e3b0e4dbd0abbfe8fe426cd8ca2ffaab66a876a9beb15441de7a5fb949ea9cc2d2dfcfc5ed8c907e13ec46e665b40b0b138274c81e7d1937a9266a9
|
|
7
|
+
data.tar.gz: c033ceeef5bbfc43493659a20a3f0d1c1bf349ac5d6fdad7d29efa744510b4a9694713fd7f92babf2d8e2750481bed1b63cee5155f02d21d9e54ed43564a59ae
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [v0.2.10](https://github.com/chef/appbundle-updater/tree/v0.2.10) (2016-01-19)
|
|
4
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.9...v0.2.10)
|
|
5
|
+
|
|
6
|
+
**Merged pull requests:**
|
|
7
|
+
|
|
8
|
+
- Need to run apt-get update before installing [\#14](https://github.com/chef/appbundle-updater/pull/14) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
9
|
+
|
|
3
10
|
## [v0.2.9](https://github.com/chef/appbundle-updater/tree/v0.2.9) (2016-01-19)
|
|
4
11
|
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.8...v0.2.9)
|
|
5
12
|
|
data/bin/appbundle-updater
CHANGED
|
@@ -69,6 +69,8 @@ def install_package_dependencies
|
|
|
69
69
|
run("apt-get -q -y install build-essential git")
|
|
70
70
|
when /fedora/, /rhel/
|
|
71
71
|
run("yum -y install gcc make git")
|
|
72
|
+
when /suse/
|
|
73
|
+
run("zypper --non-interactive install gcc make git")
|
|
72
74
|
else
|
|
73
75
|
puts "i do not know how to install compilers and git on this platform..."
|
|
74
76
|
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.
|
|
4
|
+
version: 0.2.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lamont-granquist
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Updates appbundled apps in Chef's omnibus packages
|
|
14
14
|
email:
|
|
@@ -50,10 +50,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
50
50
|
version: '0'
|
|
51
51
|
requirements: []
|
|
52
52
|
rubyforge_project:
|
|
53
|
-
rubygems_version: 2.
|
|
53
|
+
rubygems_version: 2.5.2
|
|
54
54
|
signing_key:
|
|
55
55
|
specification_version: 4
|
|
56
56
|
summary: Updates appbundled apps in Chef's omnibus packages
|
|
57
57
|
test_files:
|
|
58
58
|
- test/integration/bootstrap.ps1
|
|
59
59
|
- test/integration/bootstrap.sh
|
|
60
|
+
has_rdoc:
|