appbundler 0.12.1 → 0.12.2

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: 886181ef678a9ce88062704fa123af11d9232922f8b035e822b68a90599dd5bd
4
- data.tar.gz: 87e9e2684edc2eca88201029e90898f807e1587262863c0dc961674904dedac9
3
+ metadata.gz: 80b1a0e57faf7be328955b31ddf19903fca2e1e3d5233af954511e207d64c32b
4
+ data.tar.gz: b71e74d5cb8e4be37ba340c97bae4179591d3d1735b9b6dfe89adb6bec515f91
5
5
  SHA512:
6
- metadata.gz: c96ebe92e681abd3e3e5d0b1de54320b64beaad50a925855781f423f182fc524872c1775b91d687474df39fd1b1f1e8cb75498297dbba8b977244dbade1acd90
7
- data.tar.gz: 392cf2472ba1c7dc3afcf2bde234248a8b43e8f223ec01b5654fac0850c26e545868e58d653613797d8a1975fab19dd2ae2bd024c2dc965698079e148dd2353a
6
+ metadata.gz: 59bed4d36554d66823560e7f419bf53812823b8e7be7e49e87c079489560e585e679e10236019c54a8d4ffb6794627baba7ded963a98869f7d72bee683fa90bf
7
+ data.tar.gz: a13877b606f0dab1331015c3a16fab3024fb13b97515d25fd3c3f8ead733c8bb44c63ebd8e536cd292792167fd9619161ca417bc273690cc1d1d596cc45ad3d2
@@ -2,25 +2,30 @@
2
2
 
3
3
  This file is used to document the changes between releases of Appbundler
4
4
 
5
- <!-- latest_release 0.12.1 -->
6
- ## [v0.12.1](https://github.com/chef/appbundler/tree/v0.12.1) (2019-04-16)
5
+ <!-- latest_release 0.12.2 -->
6
+ ## [v0.12.2](https://github.com/chef/appbundler/tree/v0.12.2) (2019-04-16)
7
7
 
8
8
  #### Merged Pull Requests
9
- - add support for extra bin files not in the binstubs [#50](https://github.com/chef/appbundler/pull/50) ([lamont-granquist](https://github.com/lamont-granquist))
9
+ - fix syntax for cli options [#51](https://github.com/chef/appbundler/pull/51) ([lamont-granquist](https://github.com/lamont-granquist))
10
10
  <!-- latest_release -->
11
11
 
12
- <!-- release_rollup since=0.12.0 -->
12
+ <!-- release_rollup since=0.12.1 -->
13
13
  ### Changes not yet released to rubygems.org
14
14
 
15
15
  #### Merged Pull Requests
16
- - add support for extra bin files not in the binstubs [#50](https://github.com/chef/appbundler/pull/50) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.12.1 -->
16
+ - fix syntax for cli options [#51](https://github.com/chef/appbundler/pull/51) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.12.2 -->
17
17
  <!-- release_rollup -->
18
18
 
19
19
  <!-- latest_stable_release -->
20
+ ## [v0.12.1](https://github.com/chef/appbundler/tree/v0.12.1) (2019-04-16)
21
+
22
+ #### Merged Pull Requests
23
+ - add support for extra bin files not in the binstubs [#50](https://github.com/chef/appbundler/pull/50) ([lamont-granquist](https://github.com/lamont-granquist))
24
+ <!-- latest_stable_release -->
25
+
20
26
  ## [v0.12.0](https://github.com/chef/appbundler/tree/v0.12.0) (2019-03-18)
21
27
 
22
28
  #### Merged Pull Requests
23
29
  - Update README.md [#47](https://github.com/chef/appbundler/pull/47) ([markan](https://github.com/markan))
24
30
  - Require ruby 2.3+ and loosen gem deps [#48](https://github.com/chef/appbundler/pull/48) ([tas50](https://github.com/tas50))
25
- - Fix the labels to properly bump the gem [#49](https://github.com/chef/appbundler/pull/49) ([tas50](https://github.com/tas50))
26
- <!-- latest_stable_release -->
31
+ - Fix the labels to properly bump the gem [#49](https://github.com/chef/appbundler/pull/49) ([tas50](https://github.com/tas50))
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.12.1
1
+ 0.12.2
@@ -104,7 +104,7 @@ BANNER
104
104
 
105
105
  def run
106
106
  gems.each do |g|
107
- app = App.new(bundle_path, bin_path, g, extra_bin_files)
107
+ app = App.new(bundle_path, bin_path, g, config[:extra_bin_files])
108
108
  created_stubs = app.write_executable_stubs
109
109
  created_stubs.each do |real_executable_path, stub_path|
110
110
  $stdout.puts "Generated binstub #{stub_path} => #{real_executable_path}"
@@ -1,3 +1,3 @@
1
1
  module Appbundler
2
- VERSION = "0.12.1"
2
+ VERSION = "0.12.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Software, Inc.