vagrant-easyconfig 1.0.2 → 1.0.3
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/Gemfile +1 -14
- data/lib/vagrant-easyconfig.rb +0 -6
- data/vagrant-easyconfig.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cccc18d2f9b9dcc2d8ba4749664f0cf2dd95cd5d9407f3b1b81e4ee8ab0219cd
|
|
4
|
+
data.tar.gz: 2ac3e41655bbb038085ce8fcd210ec0c8daf7242b0f6621705d7f244735ac855
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5baffad705e5e9f1ba63267ec55dac2570904fdd8a5e5bbce3b2677b977901e905b351e4d0024648829ddbde01878be5d58f65f630930566d9fa9a0e22ade314
|
|
7
|
+
data.tar.gz: f2c773e6db93f797666c5183f63cec742544cf07fb7f1e347b2cbd195c48bc3c07ca9e01dbbbf10c84dc3cb833038efef877ac43ca8bc74b44c437d24a369a69
|
data/Gemfile
CHANGED
|
@@ -1,18 +1,5 @@
|
|
|
1
1
|
source "https://rubygems.org"
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
gem "vagrant", git: "https://github.com/hashicorp/vagrant.git"
|
|
5
|
-
end
|
|
6
|
-
|
|
7
|
-
group :plugins do
|
|
8
|
-
gem "vagrant-easyconfig" , path: "."
|
|
9
|
-
gem "vagrant-hostmanager"
|
|
10
|
-
gem "vagrant-disksize"
|
|
11
|
-
gem "vagrant-vbguest"
|
|
12
|
-
end
|
|
13
|
-
|
|
3
|
+
gem "vagrant"
|
|
14
4
|
gem "rake", "~> 13.0"
|
|
15
|
-
|
|
16
5
|
gem "rspec", "~> 3.0"
|
|
17
|
-
|
|
18
|
-
gem "rubocop", "~> 1.7"
|
data/lib/vagrant-easyconfig.rb
CHANGED
|
@@ -7,12 +7,6 @@ rescue LoadError
|
|
|
7
7
|
raise 'The EasyConfig Vagrant Plugin must be run within Vagrant'
|
|
8
8
|
end
|
|
9
9
|
|
|
10
|
-
module EasyConfig
|
|
11
|
-
class Plugin < Vagrant.plugin('2')
|
|
12
|
-
name 'EasyConfig'
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
|
|
16
10
|
require_relative "vagrant-easyconfig/hash.rb"
|
|
17
11
|
require_relative "vagrant-easyconfig/os.rb"
|
|
18
12
|
require_relative "vagrant-easyconfig/plugins.rb"
|
data/vagrant-easyconfig.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-easyconfig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Satanik
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-
|
|
12
|
+
date: 2021-03-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Vagrant plugin for easy VMs, provisioning and Ansible configuration.
|
|
15
15
|
email:
|