appbundle-updater 0.6.7 → 0.6.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c594f61e0be345e50bdf82ac45e05f91ef8450426f244e4219984b0f2e846bd7
4
- data.tar.gz: 53baf60fbf15cfb87af018bd74422cd65f4844a459de7c4218c12b5c45c56229
3
+ metadata.gz: d83c9a3e15aa62498d8e092b85980bca86a045e09c6b6fa4a6091cff6f365777
4
+ data.tar.gz: 85d15921ba89a043321ede5b12ff4489f8e30a3c50050a65a2ec3cc7aecfec28
5
5
  SHA512:
6
- metadata.gz: 032060e2deeb235be6ad3290e8508f63a17becb11ba67181a4cc4fec5fc5488b2911878bedbe255a91bcb82e53d057f9e64dc11bd7bc9ffb12e200ff96a7d90d
7
- data.tar.gz: 173b298fac4ffa7fa24b35b85bcbc9471bc3e179dbdcb34df16d70b56f357aa5566920424e6c80723834633d29ad64b539dbc7fa10ee24295c8e5c3bc37d9cc7
6
+ metadata.gz: 790c8ecc1eba547197024b35af028f9ffd8ad6216d2d1e06a05e7eaa25743b4b64a5f34353afb19bbda5a43c4d9e76a01dc5a2701679790e6e63477a79e7c25d
7
+ data.tar.gz: f086a35f5ca3f732f5fe92132ff1749eed11c669603a90068ce4505a8c94e1206772a3746b9180456204985bc0033b913b319b00680d572503f2e241f964666b
@@ -1,16 +1,19 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 0.6.5 -->
4
- ## [v0.6.5](https://github.com/chef/appbundle-updater/tree/v0.6.5) (2019-01-28)
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
- - Add yard deps that rake task uses [#34](https://github.com/chef/appbundle-updater/pull/34) ([tas50](https://github.com/tas50))
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&#39;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.5
1
+ 0.6.10
@@ -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}") }
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.6.7".freeze
2
+ VERSION = "0.6.10".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.7
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-23 00:00:00.000000000 Z
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.2
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