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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2096ef91f7410c850a8ad753e7db128d97607aea5c3355425447ca255037f5e1
4
- data.tar.gz: a61753b7c2f95b26b8300071bb2228b2df3266a23d95e06834dc0b997b1999ee
3
+ metadata.gz: 72fc5bd286d975bd2ebd226f3040188a703345d8f7e5deeb897bc328e6b12e14
4
+ data.tar.gz: b95695c4e661369813e37b6f7b0da7175a30243e154d9257141d70242737c39c
5
5
  SHA512:
6
- metadata.gz: 9e4c0a60890a5b3f3ddf1af22fb0cd7a4e6a59f844dab9b54bc4147437a0989fb5b20b41fed81de6fe3572523b653ec319f0838556e2d6581dda22c6e4842a43
7
- data.tar.gz: 3db44d29babe4ddf36f3a930a3e4dd73a337fc62b85879f4fa0bb2f3febca5f4f323c382e043e037c122b7fae2c022c24957c8d6081fad464245a9a6e4fc04a7
6
+ metadata.gz: 4dc143117e8ad2cab4ead1407501c1cb6c2671ee55151b86cd4e68c36be88c7abef23bab22d8d71f82e31e04f5db79e14198109d7b528aee42c085f697b9f143
7
+ data.tar.gz: 6431d8aa4f67b7b72b9fb069efbee84b4cdcee167504fd8da72ff09a1331fab4d2965ed7447b42faa7bc78120be72d524804a36f612c3ce1e57ff4d6969c3e64
@@ -1,16 +1,17 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 0.6.3 -->
4
- ## [v0.6.3](https://github.com/chef/appbundle-updater/tree/v0.6.3) (2018-11-27)
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
- - fix pulling tags [#32](https://github.com/chef/appbundle-updater/pull/32) ([lamont-granquist](https://github.com/lamont-granquist))
7
+ - 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))
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&#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 -->
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. To override and point
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.3
1
+ 0.6.4
@@ -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}-*").gsub(/\//, "-"), "#{app.name}"
229
+ FileUtils.mv Dir.glob("#{base}-*")[0], "#{app.name}"
230
230
  end
231
231
  else
232
232
  git_url = "https://github.com/#{repo}.git"
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.6.3"
2
+ VERSION = "0.6.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: appbundle-updater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist