vagrant-xhyve 0.4.0 → 0.4.1

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
  SHA1:
3
- metadata.gz: 7dc49c89e9de2792a7810031af7517963a895dfa
4
- data.tar.gz: ed2dac42bcf9188966a6a1f12eef64f86aac7c8b
3
+ metadata.gz: 61a469b0974ef0a548ef02ab6fb21108711ca3d7
4
+ data.tar.gz: 8328bb3b0cef1ea5916fb676ef5f5b796514ba2d
5
5
  SHA512:
6
- metadata.gz: 7aa7db28167d2d73369698ac1419ef38bd01610a60ba77790f970ad368fb49008b031b6a00902688b48b348738883751e4e34cc28040451cec3ea6b82594499f
7
- data.tar.gz: 1b8da947d8374a840fe6f9edd5ff4a9ea9141d7a7f6419a7a45deda0f1f0bba483c52d799367e40277f7b90f8002504c33ace5e2d53253f5473e8ba916c73a93
6
+ metadata.gz: 8275fa0c1693543c21d40b0632462f33fb175d92be05f653b4ae4adb2e5a9b2a4449ee8085489bd08e951cf795d3a11d17f58f0dfd05d15013c464fe6e0206cc
7
+ data.tar.gz: 02b2336357cecf075848a3653214afdf397320ed960d44e1d58278f6bb8249b8b6f7cb1cbbbd28591804f414fd02ef970b09287e2c262895a44e71a4d0340675
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.4.1 (December 10th, 2016)
2
+
3
+ * Put the embedded version of xhyve-ruby first in the LOAD_PATH (Guy Pascarella)
4
+
1
5
  # 0.4.0 (December 10th, 2016)
2
6
 
3
7
  * Added qcow support to use with hyperkit
data/README.md CHANGED
@@ -156,3 +156,4 @@ $ bundle exec vagrant up --provider=xhyve
156
156
 
157
157
  * Patrick Armstrong
158
158
  * Nuno Passaro
159
+ * Guy Pascarella
data/lib/vagrant-xhyve.rb CHANGED
@@ -8,6 +8,10 @@ module VagrantPlugins
8
8
  autoload :Action, lib_path.join("action")
9
9
  autoload :Errors, lib_path.join("errors")
10
10
 
11
+ # Put vagrant-xhyve-x.y.z/vendor/xhyve-ruby/lib on the LOAD_PATH before
12
+ # the auto-loaded xhyve-ruby-a.b.c
13
+ $LOAD_PATH.unshift(Pathname.new(File.expand_path("../../vendor/xhyve-ruby/lib", __FILE__)))
14
+
11
15
  # This returns the path to the source of this plugin.
12
16
  #
13
17
  # @return [Pathname]
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module XHYVE
3
- VERSION = '0.4.0'
3
+ VERSION = '0.4.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-xhyve
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Armstrong