vagrant-xhyve 0.1.1.pre → 0.1.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/README.md +9 -1
- data/lib/vagrant-xhyve/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b5e1d0c626ba7d801415d0b257e6ef834a0cbe3
|
4
|
+
data.tar.gz: adc70533061c37f90ba7ad37a035a31553fc42b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33d1db9506a5e7590228e384d629c598e5c43688b6393e38d04d167f4f7e1c341587b291f982a6f6681dc2626d35efa76a7c0e2a77a658e2d99e3ccb580064d9
|
7
|
+
data.tar.gz: 344ccebfa6e96098ba52fdfc06a5cb289a030443fa33d743301634a576f00746682f9d14f0357632b45408d5ae8b7615525f6978d409fb6c11e91694703ec07b
|
data/README.md
CHANGED
@@ -73,7 +73,7 @@ Vagrant.configure("2") do |config|
|
|
73
73
|
|
74
74
|
config.vm.provider :xhyve do |xhyve|
|
75
75
|
xhyve.cpus = 2
|
76
|
-
xhyve.memory = 1G
|
76
|
+
xhyve.memory = "1G"
|
77
77
|
end
|
78
78
|
end
|
79
79
|
```
|
@@ -101,6 +101,14 @@ A. There's a theory in that issue linked above that wrapping xhyve in an
|
|
101
101
|
app store app would help. If that were the case, you could probably use the
|
102
102
|
embedded binary with vagrant-xhyve.
|
103
103
|
|
104
|
+
## Acknowledgements
|
105
|
+
|
106
|
+
This plugin was heavilly cribbed from the vagrant-aws and vagrant-virtualbox
|
107
|
+
providers. So thanks for those.
|
108
|
+
|
109
|
+
This also uses the nice [xhyve-ruby](https://github.com/dalehamel/xhyve-ruby)
|
110
|
+
gem, by Dale Hamel.
|
111
|
+
|
104
112
|
## Development
|
105
113
|
|
106
114
|
To work on the `vagrant-xhyve` plugin, clone this repository out, and use
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-xhyve
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Armstrong
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xhyve-ruby
|