appbundle-updater 0.6.3 → 0.6.4
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 +4 -3
- data/README.md +1 -1
- data/VERSION +1 -1
- data/bin/appbundle-updater +1 -1
- data/lib/appbundle_updater/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: 72fc5bd286d975bd2ebd226f3040188a703345d8f7e5deeb897bc328e6b12e14
|
|
4
|
+
data.tar.gz: b95695c4e661369813e37b6f7b0da7175a30243e154d9257141d70242737c39c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4dc143117e8ad2cab4ead1407501c1cb6c2671ee55151b86cd4e68c36be88c7abef23bab22d8d71f82e31e04f5db79e14198109d7b528aee42c085f697b9f143
|
|
7
|
+
data.tar.gz: 6431d8aa4f67b7b72b9fb069efbee84b4cdcee167504fd8da72ff09a1331fab4d2965ed7447b42faa7bc78120be72d524804a36f612c3ce1e57ff4d6969c3e64
|
data/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
# appbundle-updater Change Log
|
|
2
2
|
|
|
3
|
-
<!-- latest_release 0.6.
|
|
4
|
-
## [v0.6.
|
|
3
|
+
<!-- latest_release 0.6.4 -->
|
|
4
|
+
## [v0.6.4](https://github.com/chef/appbundle-updater/tree/v0.6.4) (2018-11-27)
|
|
5
5
|
|
|
6
6
|
#### Merged Pull Requests
|
|
7
|
-
-
|
|
7
|
+
- i don't believe this gsub is useful [#33](https://github.com/chef/appbundle-updater/pull/33) ([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
|
+
- 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 -->
|
|
14
15
|
- fix pulling tags [#32](https://github.com/chef/appbundle-updater/pull/32) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.3 -->
|
|
15
16
|
<!-- release_rollup -->
|
|
16
17
|
|
data/README.md
CHANGED
|
@@ -57,7 +57,7 @@ If you don't want "master" you can use any other git tag/branch/sha/etc that git
|
|
|
57
57
|
|
|
58
58
|
## Using a GitHub Fork
|
|
59
59
|
|
|
60
|
-
By default this gem clones from the official repos from the software.
|
|
60
|
+
By default this gem clones from the official repos from the software. To override and point
|
|
61
61
|
at at fork use the `--github`` option on the command-line:
|
|
62
62
|
|
|
63
63
|
```ruby
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.6.
|
|
1
|
+
0.6.4
|
data/bin/appbundle-updater
CHANGED
|
@@ -226,7 +226,7 @@ class Updater
|
|
|
226
226
|
extract_tgz(tempfile.path)
|
|
227
227
|
end
|
|
228
228
|
base = File.basename repo
|
|
229
|
-
FileUtils.mv Dir.glob("#{base}-*")
|
|
229
|
+
FileUtils.mv Dir.glob("#{base}-*")[0], "#{app.name}"
|
|
230
230
|
end
|
|
231
231
|
else
|
|
232
232
|
git_url = "https://github.com/#{repo}.git"
|