vagrant-xhyve 0.4.0 → 0.4.1
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 -0
- data/README.md +1 -0
- data/lib/vagrant-xhyve.rb +4 -0
- data/lib/vagrant-xhyve/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 61a469b0974ef0a548ef02ab6fb21108711ca3d7
|
4
|
+
data.tar.gz: 8328bb3b0cef1ea5916fb676ef5f5b796514ba2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8275fa0c1693543c21d40b0632462f33fb175d92be05f653b4ae4adb2e5a9b2a4449ee8085489bd08e951cf795d3a11d17f58f0dfd05d15013c464fe6e0206cc
|
7
|
+
data.tar.gz: 02b2336357cecf075848a3653214afdf397320ed960d44e1d58278f6bb8249b8b6f7cb1cbbbd28591804f414fd02ef970b09287e2c262895a44e71a4d0340675
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
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]
|