vagrant-wsl 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4b6e2536798248e64873c34a0258fc03310bb4118fd5d571017166f4d9d8e0fc
4
+ data.tar.gz: ac65115ae7c535dd8fe912e5e4d57fd47f384532e253d9c2c043d5b1122e75ba
5
+ SHA512:
6
+ metadata.gz: a0d2bfb390bc80c1a2f47db6c8fe82d5e08a4b415a5b15f870619545538b754dd161b7ee444423bc42b62c2f4789e192bcf20cedae78ca8dc8484f8128758777
7
+ data.tar.gz: c91ad75833ce16a26bf4655de642aae07cd37bb26d1f90746a901787dabfe1afe2afed156c316c1bd4ecfbdffb9b37d4f5146c15598b700a145fa26b3f635b9d
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ .idea
data/CHANGELOG.md ADDED
File without changes
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 aracpac
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # Vagrant WSL Provider
@@ -0,0 +1,5 @@
1
+ module VagrantPlugins
2
+ module WSL
3
+ VERSION = '0.0.1'
4
+ end
5
+ end
File without changes
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ lib = File.expand_path('../lib', __FILE__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'vagrant-wsl/version'
6
+
7
+ Gem::Specification.new do |gem|
8
+ gem.name = 'vagrant-wsl'
9
+ gem.version = VagrantPlugins::WSL::VERSION
10
+ gem.authors = ['Mo Ismailzai']
11
+ gem.email = ['mo@ismailzai.com']
12
+ gem.description = %q{Enables Vagrant to manage machines in WSL.}
13
+ gem.summary = gem.description
14
+ gem.license = 'MIT'
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ['lib']
19
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vagrant-wsl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Mo Ismailzai
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-06-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Enables Vagrant to manage machines in WSL.
14
+ email:
15
+ - mo@ismailzai.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - CHANGELOG.md
22
+ - LICENSE
23
+ - README.md
24
+ - lib/vagrant-wsl.rb
25
+ - lib/vagrant-wsl/version.rb
26
+ - vagrant-wsl.gemspec
27
+ homepage:
28
+ licenses:
29
+ - MIT
30
+ metadata: {}
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.3.7
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Enables Vagrant to manage machines in WSL.
50
+ test_files: []