appbundle-updater 0.6.7 → 0.6.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -3
- data/README.md +7 -1
- data/VERSION +1 -1
- data/bin/appbundle-updater +5 -0
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d83c9a3e15aa62498d8e092b85980bca86a045e09c6b6fa4a6091cff6f365777
|
4
|
+
data.tar.gz: 85d15921ba89a043321ede5b12ff4489f8e30a3c50050a65a2ec3cc7aecfec28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 790c8ecc1eba547197024b35af028f9ffd8ad6216d2d1e06a05e7eaa25743b4b64a5f34353afb19bbda5a43c4d9e76a01dc5a2701679790e6e63477a79e7c25d
|
7
|
+
data.tar.gz: f086a35f5ca3f732f5fe92132ff1749eed11c669603a90068ce4505a8c94e1206772a3746b9180456204985bc0033b913b319b00680d572503f2e241f964666b
|
data/CHANGELOG.md
CHANGED
@@ -1,16 +1,19 @@
|
|
1
1
|
# appbundle-updater Change Log
|
2
2
|
|
3
|
-
<!-- latest_release 0.6.
|
4
|
-
## [v0.6.
|
3
|
+
<!-- latest_release 0.6.10 -->
|
4
|
+
## [v0.6.10](https://github.com/chef/appbundle-updater/tree/v0.6.10) (2019-04-24)
|
5
5
|
|
6
6
|
#### Merged Pull Requests
|
7
|
-
-
|
7
|
+
- support --binstubs-source option [#38](https://github.com/chef/appbundle-updater/pull/38) ([lamont-granquist](https://github.com/lamont-granquist))
|
8
8
|
<!-- latest_release -->
|
9
9
|
|
10
10
|
<!-- release_rollup since=0.6.2 -->
|
11
11
|
### Changes not yet released to rubygems.org
|
12
12
|
|
13
13
|
#### Merged Pull Requests
|
14
|
+
- support --binstubs-source option [#38](https://github.com/chef/appbundle-updater/pull/38) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.10 -->
|
15
|
+
- Add project status info to the readme [#37](https://github.com/chef/appbundle-updater/pull/37) ([tas50](https://github.com/tas50)) <!-- 0.6.9 -->
|
16
|
+
- Update travis ruby versions + minor github tweaks [#36](https://github.com/chef/appbundle-updater/pull/36) ([tas50](https://github.com/tas50)) <!-- 0.6.6 -->
|
14
17
|
- Add yard deps that rake task uses [#34](https://github.com/chef/appbundle-updater/pull/34) ([tas50](https://github.com/tas50)) <!-- 0.6.5 -->
|
15
18
|
- i don't believe this gsub is useful [#33](https://github.com/chef/appbundle-updater/pull/33) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.3 -->
|
16
19
|
- fix pulling tags [#32](https://github.com/chef/appbundle-updater/pull/32) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.3 -->
|
data/README.md
CHANGED
@@ -1,10 +1,16 @@
|
|
1
1
|
# appbundle-updater
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/appbundle-updater.svg)](https://badge.fury.io/rb/appbundle-updater)
|
3
|
+
|
4
|
+
* **Umbrella Project**: [Chef Infra](https://github.com/chef/chef-oss-practices/blob/master/projects/chef-foundation.md)
|
5
|
+
* **[Project State](https://github.com/chef/chef-oss-practices/blob/master/repo-management/repo-states.md)**: Active
|
6
|
+
* **Issues [Response Time Maximum](https://github.com/chef/chef-oss-practices/blob/master/repo-management/repo-states.md)**: 7 days
|
7
|
+
* **Pull Request [Response Time Maximum](https://github.com/chef/chef-oss-practices/blob/master/repo-management/repo-states.md)**: 7 days
|
2
8
|
|
3
9
|
Helper to update Chef and Chef-DK appbundle'd apps inside of an omnibus bundle.
|
4
10
|
|
5
11
|
## Requirements
|
6
12
|
|
7
|
-
* A ChefDK or Chef Client installation in the standard location.
|
13
|
+
* A Chef Workstation, ChefDK, or Chef Client installation in the standard location.
|
8
14
|
* You need to have the `git` command in your PATH.
|
9
15
|
|
10
16
|
## Usage Examples
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.10
|
data/bin/appbundle-updater
CHANGED
@@ -193,6 +193,7 @@ class Updater
|
|
193
193
|
@ref = options[:ref]
|
194
194
|
@tarball = options[:tarball]
|
195
195
|
@extra_bin_files = options[:extra_bin_files]
|
196
|
+
@binstubs_source = options[:binstubs_source]
|
196
197
|
@repo = options[:repo] || @app.repo
|
197
198
|
end
|
198
199
|
|
@@ -256,6 +257,7 @@ class Updater
|
|
256
257
|
Dir.chdir(app_dir) do
|
257
258
|
cmd = "#{bin_dir.join("appbundler")} #{app_dir} #{chefdk.join("bin")}"
|
258
259
|
cmd += " --extra-bin-files #{@extra_bin_files}" if @extra_bin_files
|
260
|
+
cmd += " --binstubs-source #{@binstubs_source}" if @binstubs_source
|
259
261
|
ruby(cmd)
|
260
262
|
end
|
261
263
|
|
@@ -304,6 +306,9 @@ class CLI
|
|
304
306
|
opts.on("-E", "--extra-bin-files BIN1,BIN2") do |e|
|
305
307
|
options[:extra_bin_files] = e
|
306
308
|
end
|
309
|
+
opts.on("-B", "--binstubs-source path/to/source") do |e|
|
310
|
+
options[:extra_bin_files] = e
|
311
|
+
end
|
307
312
|
opts.separator("")
|
308
313
|
opts.separator("App names:")
|
309
314
|
CHEFDK_APPS.each { |a| opts.separator(" * #{a.name}") }
|
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.
|
4
|
+
version: 0.6.10
|
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-04-
|
11
|
+
date: 2019-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Updates appbundled apps in Chef's omnibus packages
|
14
14
|
email:
|
@@ -50,7 +50,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
50
50
|
- !ruby/object:Gem::Version
|
51
51
|
version: '0'
|
52
52
|
requirements: []
|
53
|
-
rubygems_version: 3.0.
|
53
|
+
rubygems_version: 3.0.3
|
54
54
|
signing_key:
|
55
55
|
specification_version: 4
|
56
56
|
summary: Updates appbundled apps in Chef's omnibus packages
|