appbundle-updater 0.6.2 → 0.6.3

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: 83350fc791859666a80b456a37c170eadb17bd65f3b8b2ed1cea6693c59c310d
4
- data.tar.gz: 44ac86efaae18679694865a099427530aa3b8b3e5019c2ad8752b90c574bf3b7
3
+ metadata.gz: 2096ef91f7410c850a8ad753e7db128d97607aea5c3355425447ca255037f5e1
4
+ data.tar.gz: a61753b7c2f95b26b8300071bb2228b2df3266a23d95e06834dc0b997b1999ee
5
5
  SHA512:
6
- metadata.gz: 920752b237611bb3cc0b7a02130939ca97a0cb7b5c9b2ef91c2b275cc3598bfe89e0c98f226d677a525ef5cdd21fd3d6748ce4c447a308f632f1445eb3943b48
7
- data.tar.gz: 8c5123743c1fb8a0c8d4d7f67070a8ee71770a227e9202e53226258b4435f10799fb1721b843ff99b7a20eb2935d5301ea91b1c1e4e7fdd51963460af2473a9e
6
+ metadata.gz: 9e4c0a60890a5b3f3ddf1af22fb0cd7a4e6a59f844dab9b54bc4147437a0989fb5b20b41fed81de6fe3572523b653ec319f0838556e2d6581dda22c6e4842a43
7
+ data.tar.gz: 3db44d29babe4ddf36f3a930a3e4dd73a337fc62b85879f4fa0bb2f3febca5f4f323c382e043e037c122b7fae2c022c24957c8d6081fad464245a9a6e4fc04a7
@@ -1,25 +1,30 @@
1
1
  # appbundle-updater Change Log
2
2
 
3
- <!-- latest_release 0.6.2 -->
4
- ## [v0.6.2](https://github.com/chef/appbundle-updater/tree/v0.6.2) (2018-10-10)
3
+ <!-- latest_release 0.6.3 -->
4
+ ## [v0.6.3](https://github.com/chef/appbundle-updater/tree/v0.6.3) (2018-11-27)
5
5
 
6
6
  #### Merged Pull Requests
7
- - Rename the gemspec to match the gem name [#31](https://github.com/chef/appbundle-updater/pull/31) ([tas50](https://github.com/tas50))
7
+ - fix pulling tags [#32](https://github.com/chef/appbundle-updater/pull/32) ([lamont-granquist](https://github.com/lamont-granquist))
8
8
  <!-- latest_release -->
9
9
 
10
- <!-- release_rollup since=0.6.0 -->
10
+ <!-- release_rollup since=0.6.2 -->
11
11
  ### Changes not yet released to rubygems.org
12
12
 
13
13
  #### Merged Pull Requests
14
- - Rename the gemspec to match the gem name [#31](https://github.com/chef/appbundle-updater/pull/31) ([tas50](https://github.com/tas50)) <!-- 0.6.2 -->
14
+ - fix pulling tags [#32](https://github.com/chef/appbundle-updater/pull/32) ([lamont-granquist](https://github.com/lamont-granquist)) <!-- 0.6.3 -->
15
15
  <!-- release_rollup -->
16
16
 
17
17
  <!-- latest_stable_release -->
18
+ ## [v0.6.2](https://github.com/chef/appbundle-updater/tree/v0.6.2) (2018-10-10)
19
+
20
+ #### Merged Pull Requests
21
+ - Rename the gemspec to match the gem name [#31](https://github.com/chef/appbundle-updater/pull/31) ([tas50](https://github.com/tas50))
22
+ <!-- latest_stable_release -->
23
+
18
24
  ## [v0.6.1](https://github.com/chef/appbundle-updater/tree/v0.6.1) (2018-10-09)
19
25
 
20
26
  #### Merged Pull Requests
21
27
  - Fix the license string and limit the files we ship in the gem [#30](https://github.com/chef/appbundle-updater/pull/30) ([tas50](https://github.com/tas50))
22
- <!-- latest_stable_release -->
23
28
 
24
29
 
25
30
 
data/README.md CHANGED
@@ -113,9 +113,9 @@ Created and maintained by [Fletcher Nichol][fnichol] (<fnichol@nichol.ca>)
113
113
 
114
114
  ## <a name="license"></a> License
115
115
 
116
- Apache 2.0 (see [LICENSE.txt][license])
116
+ Apache 2.0 (see [LICENSE][license])
117
117
 
118
- [license]: https://github.com/fnichol/chefdk-update-app/blob/master/LICENSE.txt
118
+ [license]: https://github.com/chef/appbundle-updater/blob/master/LICENSE
119
119
  [fnichol]: https://github.com/fnichol
120
- [repo]: https://github.com/fnichol/chefdk-update-app
121
- [issues]: https://github.com/fnichol/chefdk-update-app/issues
120
+ [repo]: https://github.com/chef/appbundle-updater
121
+ [issues]: https://github.com/chef/appbundle-updater/issues
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.2
1
+ 0.6.3
@@ -226,7 +226,7 @@ class Updater
226
226
  extract_tgz(tempfile.path)
227
227
  end
228
228
  base = File.basename repo
229
- FileUtils.mv "#{base}-#{ref}".gsub(/\//, "-"), "#{app.name}"
229
+ FileUtils.mv Dir.glob("#{base}-*").gsub(/\//, "-"), "#{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.2"
2
+ VERSION = "0.6.3"
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.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - lamont-granquist
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-10 00:00:00.000000000 Z
11
+ date: 2018-11-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Updates appbundled apps in Chef's omnibus packages
14
14
  email: