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 +4 -4
- data/CHANGELOG.md +12 -7
- data/VERSION +1 -1
- data/lib/appbundler/cli.rb +1 -1
- data/lib/appbundler/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80b1a0e57faf7be328955b31ddf19903fca2e1e3d5233af954511e207d64c32b
|
4
|
+
data.tar.gz: b71e74d5cb8e4be37ba340c97bae4179591d3d1735b9b6dfe89adb6bec515f91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59bed4d36554d66823560e7f419bf53812823b8e7be7e49e87c079489560e585e679e10236019c54a8d4ffb6794627baba7ded963a98869f7d72bee683fa90bf
|
7
|
+
data.tar.gz: a13877b606f0dab1331015c3a16fab3024fb13b97515d25fd3c3f8ead733c8bb44c63ebd8e536cd292792167fd9619161ca417bc273690cc1d1d596cc45ad3d2
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
6
|
-
## [v0.12.
|
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
|
-
-
|
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.
|
12
|
+
<!-- release_rollup since=0.12.1 -->
|
13
13
|
### Changes not yet released to rubygems.org
|
14
14
|
|
15
15
|
#### Merged Pull Requests
|
16
|
-
-
|
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
|
+
0.12.2
|
data/lib/appbundler/cli.rb
CHANGED
@@ -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}"
|
data/lib/appbundler/version.rb
CHANGED