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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08325e7673c51294b79b83f7c8d5298b16f555271152a9b9db4a34e8a8fc1a26'
4
- data.tar.gz: cc676b7fdb9aefb4ba7b9fd7b5bdb228fb38857f587d9d76e524d0e3fcf5d9e7
3
+ metadata.gz: 5cbdf35c7e4606cc055245096ebb1e5ccf7905d05bfd816765143d4a0c1b8058
4
+ data.tar.gz: fc3052515687a7cc9825142ce3a6396768acac782e0fb739b41ee282476d353c
5
5
  SHA512:
6
- metadata.gz: bf72771c00b8a0b57f9670b4701a60454d26c386f69b904c4615f22806fe58e8c65d92d1eda36512780ff9f96aa590124990d83bc76e1217e8abf44ba3c3ea55
7
- data.tar.gz: 1b2deba7194aaeb592ff48cf3cd7d394f29a819b1126580459d4d2d5c2094355ab6ba8149bb6f3f59d2ec968da3fb5e80d25003d9cb352e9c586632a971f1a60
6
+ metadata.gz: 55c5516530dfa07de44f860c098e3ff2b18f6b10e570fdf3a6871b2d1b7c875a5a48b150b07de842df89f0115959866ee30c3fafdc9de8cb827d3bfadc22655a
7
+ data.tar.gz: c11c45912e8613f616a4175705021ee4fdb82de235117769ba28a6dbf0bf739a1921e1551e7adb4865003d80ab97c9dd8cd96cdf70c113c7ee589793b0032567
data/README.md CHANGED
@@ -1,26 +1,20 @@
1
1
  # VirtualboxWSL2
2
2
 
3
- Plugin allows Vagrant to properly use VirtualBox as a provider from WSL2.
3
+ A plugin for Vagrant that fixes `vagrant up` and `vagrant ssh` when executed from WSL2.
4
4
 
5
- ## Installation
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
- Add this line to your application's Gemfile:
9
+ ## Installation
8
10
 
9
- ```ruby
10
- gem 'virtualbox_WSL2'
11
11
  ```
12
-
13
- And then execute:
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 fixed `vagrant up` and `vagrant ssh` commands.
17
+ Nothing special, just use standard `vagrant up` and `vagrant ssh` commands.
24
18
 
25
19
  ## Contributing
26
20
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VirtualboxWSL2
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -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 = "Allows to use VirtualBox as a provider from WSL2."
14
- spec.description = "On WSL2, (1) the second port forwarding entry will be created on 0.0.0.0, which would allow to ssh to
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.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: "On WSL2, (1) the second port forwarding entry will be created on 0.0.0.0,
56
- which would allow to ssh to \n VirtualBox VM on Windows IP.
57
- (2) Windows IP will be used automatically for `vagrant ssh` command."
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: Allows to use VirtualBox as a provider from WSL2.
97
+ summary: Plugin allows to properly use VirtualBox as a provider on WSL2.
97
98
  test_files: []