vagrant-easyconfig 0.0.1 → 1.0.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/Gemfile +9 -2
- data/LICENSE.md +8 -0
- data/vagrant-easyconfig.gemspec +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b2defe9f2a73e6d5626ef9ca6d266b6d641e05079db8690120d99eb600c79ae
|
|
4
|
+
data.tar.gz: 24451dde6dc7c7efcf59722cdf29694fba5d282b6a2dac6fb0dd47477c58f606
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2054bd79301883d0949b829fa6625c70081cbd10b09c6a296a6ac982a3854b7f6ef61df18611adc917ea6debbe2b090be121874100bc91b401f419299ff25fbb
|
|
7
|
+
data.tar.gz: 58669a7331dce4fd9d6303c9ee98e7f3e922a195c2a8f340e31b048085c8b91491481fb15190d1b5bae010babd49fe83336dbe456733a056e189a8fd53613315
|
data/Gemfile
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
source "https://rubygems.org"
|
|
2
2
|
|
|
3
|
-
gemspec
|
|
4
|
-
|
|
5
3
|
group :development do
|
|
6
4
|
gem "vagrant", git: "https://github.com/hashicorp/vagrant.git"
|
|
7
5
|
end
|
|
8
6
|
|
|
9
7
|
group :plugins do
|
|
10
8
|
gem "vagrant-easyconfig" , path: "."
|
|
9
|
+
gem "vagrant-hostmanager"
|
|
10
|
+
gem "vagrant-disksize"
|
|
11
|
+
gem "vagrant-vbguest"
|
|
11
12
|
end
|
|
13
|
+
|
|
14
|
+
gem "rake", "~> 13.0"
|
|
15
|
+
|
|
16
|
+
gem "rspec", "~> 3.0"
|
|
17
|
+
|
|
18
|
+
gem "rubocop", "~> 1.7"
|
data/LICENSE.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
|
|
2
|
+
----------------------------------------------------------------------------
|
|
3
|
+
"THE HOOKAHWARE LICENSE" (Revision 42):
|
|
4
|
+
As long as you retain this notice you can do whatever you want with this
|
|
5
|
+
stuff. If we meet some day, and you think this stuff is worth it,
|
|
6
|
+
you can buy me a hookah in return.
|
|
7
|
+
----------------------------------------------------------------------------
|
|
8
|
+
|
data/vagrant-easyconfig.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "vagrant-easyconfig"
|
|
3
|
-
s.version = "
|
|
4
|
-
s.license = "
|
|
3
|
+
s.version = "1.0.2"
|
|
4
|
+
s.license = "HOOKAHWARE"
|
|
5
5
|
s.authors = ["Daniel Satanik", "Benjamin Akhras"]
|
|
6
6
|
s.email = ["daniel@satanik.at"]
|
|
7
7
|
s.homepage = "https://gitlab.com/dessecated-unicorn/vagrant-easyconfig"
|
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:
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Satanik
|
|
@@ -22,6 +22,7 @@ files:
|
|
|
22
22
|
- ".gitignore"
|
|
23
23
|
- ".gitlab-ci.yml"
|
|
24
24
|
- Gemfile
|
|
25
|
+
- LICENSE.md
|
|
25
26
|
- README.md
|
|
26
27
|
- lib/vagrant-easyconfig.rb
|
|
27
28
|
- lib/vagrant-easyconfig/config.rb
|
|
@@ -33,7 +34,7 @@ files:
|
|
|
33
34
|
- vagrant-easyconfig.gemspec
|
|
34
35
|
homepage: https://gitlab.com/dessecated-unicorn/vagrant-easyconfig
|
|
35
36
|
licenses:
|
|
36
|
-
-
|
|
37
|
+
- HOOKAHWARE
|
|
37
38
|
metadata: {}
|
|
38
39
|
post_install_message:
|
|
39
40
|
rdoc_options:
|