virtualbox_WSL2 0.1.1 → 0.1.2
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 +8 -14
- data/lib/virtualbox_WSL2/version.rb +1 -1
- data/virtualbox_WSL2.gemspec +2 -3
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5cbdf35c7e4606cc055245096ebb1e5ccf7905d05bfd816765143d4a0c1b8058
|
4
|
+
data.tar.gz: fc3052515687a7cc9825142ce3a6396768acac782e0fb739b41ee282476d353c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55c5516530dfa07de44f860c098e3ff2b18f6b10e570fdf3a6871b2d1b7c875a5a48b150b07de842df89f0115959866ee30c3fafdc9de8cb827d3bfadc22655a
|
7
|
+
data.tar.gz: c11c45912e8613f616a4175705021ee4fdb82de235117769ba28a6dbf0bf739a1921e1551e7adb4865003d80ab97c9dd8cd96cdf70c113c7ee589793b0032567
|
data/README.md
CHANGED
@@ -1,26 +1,20 @@
|
|
1
1
|
# VirtualboxWSL2
|
2
2
|
|
3
|
-
|
3
|
+
A plugin for Vagrant that fixes `vagrant up` and `vagrant ssh` when executed from WSL2.
|
4
4
|
|
5
|
-
|
5
|
+
Two things happen on top of normal vagrant behavior:
|
6
|
+
- the second port forwarding entry will be created on 0.0.0.0 that allows to ssh to VirtualBox VM from WSL2 on Windows IP.
|
7
|
+
- Windows IP will be automatically selected for `vagrant ssh` command instean of localhost.
|
6
8
|
|
7
|
-
|
9
|
+
## Installation
|
8
10
|
|
9
|
-
```ruby
|
10
|
-
gem 'virtualbox_WSL2'
|
11
11
|
```
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
$ bundle install
|
16
|
-
|
17
|
-
Or install it yourself as:
|
18
|
-
|
19
|
-
$ gem install virtualbox_WSL2
|
12
|
+
vagrant plugin install virtualbox_WSL2
|
13
|
+
```
|
20
14
|
|
21
15
|
## Usage
|
22
16
|
|
23
|
-
Nothing special, just
|
17
|
+
Nothing special, just use standard `vagrant up` and `vagrant ssh` commands.
|
24
18
|
|
25
19
|
## Contributing
|
26
20
|
|
data/virtualbox_WSL2.gemspec
CHANGED
@@ -10,9 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ["Andrei Lapin"]
|
11
11
|
spec.email = ["karandash8@gmail.com"]
|
12
12
|
|
13
|
-
spec.summary = "
|
14
|
-
spec.description = "
|
15
|
-
VirtualBox VM on Windows IP. (2) Windows IP will be used automatically for `vagrant ssh` command."
|
13
|
+
spec.summary = "Plugin allows to properly use VirtualBox as a provider on WSL2."
|
14
|
+
spec.description = "Two things happen on top of normal vagrant behavior: (1) the second port forwarding entry will be created on 0.0.0.0 that allows to ssh to VirtualBox VM from WSL2 on Windows IP. (2) Windows IP will be automatically selected for `vagrant ssh` command instean of localhost."
|
16
15
|
spec.homepage = "http://www.vagrantup.com"
|
17
16
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
18
17
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: virtualbox_WSL2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Lapin
|
@@ -52,9 +52,10 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
description:
|
56
|
-
|
57
|
-
(2) Windows IP will be
|
55
|
+
description: 'Two things happen on top of normal vagrant behavior: (1) the second
|
56
|
+
port forwarding entry will be created on 0.0.0.0 that allows to ssh to VirtualBox
|
57
|
+
VM from WSL2 on Windows IP. (2) Windows IP will be automatically selected for `vagrant
|
58
|
+
ssh` command instean of localhost.'
|
58
59
|
email:
|
59
60
|
- karandash8@gmail.com
|
60
61
|
executables: []
|
@@ -93,5 +94,5 @@ requirements: []
|
|
93
94
|
rubygems_version: 3.1.4
|
94
95
|
signing_key:
|
95
96
|
specification_version: 4
|
96
|
-
summary:
|
97
|
+
summary: Plugin allows to properly use VirtualBox as a provider on WSL2.
|
97
98
|
test_files: []
|