vagrant-invade 0.4.3 → 0.4.4
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.lock +1 -1
- data/README.md +13 -0
- data/invade.yml.dist +1 -1
- data/lib/vagrant-invade/version.rb +1 -1
- data/vagrant-invade.gemspec +1 -1
- metadata +15 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1aad58eb8fd8f1802188d135b0e6f2a5d4ce8a62
|
|
4
|
+
data.tar.gz: 8d28a95cc2fed4b8880d9ab2d2644e862dae60c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3d051ea1548406362b8ae94764d6a396451cfd805a469844c5b5ae5ccacae705b1b3dab4a5f6a5cbea058f9a4c8050bf0e292b9686181b1c10913425e28be10
|
|
7
|
+
data.tar.gz: 52845d4ba8eac250e764be9ec4f16bf7fc7feb0c0aeb13c7212811a768ecc2d77ca34de88e221019a579bba583d007eaffa460aab613e3f11683d1089ad3286e
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -22,3 +22,16 @@ There are new commands you can use to init, validate and build your Vagrantfile.
|
|
|
22
22
|
|
|
23
23
|
### Build
|
|
24
24
|
`vagrant invade build` will **build a Vagrantfile** based on what you set in the 'invade.yml' configuration file and place it to the directory you did run the command.
|
|
25
|
+
|
|
26
|
+
## Development
|
|
27
|
+
You are able to collaborate to make this plugin even better. You just need a simple setup of ruby software to make it work. You could also use RVM to keep your ruby environment clean.
|
|
28
|
+
|
|
29
|
+
### Requirements
|
|
30
|
+
1. Vagrant v1.7+
|
|
31
|
+
2. Ruby >= 2.0.0
|
|
32
|
+
3. RubyGems
|
|
33
|
+
4. Bundler
|
|
34
|
+
|
|
35
|
+
### Setup
|
|
36
|
+
1. ``gem install bundler``
|
|
37
|
+
2. ``bundle install``
|
data/invade.yml.dist
CHANGED
data/vagrant-invade.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-invade
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lennart Stein
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ~>
|
|
17
|
+
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '1.10'
|
|
20
|
-
- -
|
|
20
|
+
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.10.
|
|
22
|
+
version: 1.10.6
|
|
23
23
|
type: :development
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- - ~>
|
|
27
|
+
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '1.10'
|
|
30
|
-
- -
|
|
30
|
+
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 1.10.
|
|
32
|
+
version: 1.10.6
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: rake
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - ~>
|
|
37
|
+
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
39
|
version: '0'
|
|
40
40
|
type: :development
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- - ~>
|
|
44
|
+
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '0'
|
|
47
47
|
description: InVaDE is a plugin that uses a YAML configuration file to build a Vagrantfile
|
|
@@ -51,8 +51,8 @@ executables: []
|
|
|
51
51
|
extensions: []
|
|
52
52
|
extra_rdoc_files: []
|
|
53
53
|
files:
|
|
54
|
-
- .gitattributes
|
|
55
|
-
- .gitignore
|
|
54
|
+
- ".gitattributes"
|
|
55
|
+
- ".gitignore"
|
|
56
56
|
- Gemfile
|
|
57
57
|
- Gemfile.lock
|
|
58
58
|
- LICENSE
|
|
@@ -160,17 +160,17 @@ require_paths:
|
|
|
160
160
|
- lib
|
|
161
161
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
|
163
|
-
- -
|
|
163
|
+
- - ">="
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
165
|
version: 2.0.0
|
|
166
166
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
167
167
|
requirements:
|
|
168
|
-
- -
|
|
168
|
+
- - ">="
|
|
169
169
|
- !ruby/object:Gem::Version
|
|
170
170
|
version: '0'
|
|
171
171
|
requirements: []
|
|
172
172
|
rubyforge_project:
|
|
173
|
-
rubygems_version: 2.
|
|
173
|
+
rubygems_version: 2.2.5
|
|
174
174
|
signing_key:
|
|
175
175
|
specification_version: 4
|
|
176
176
|
summary: Create a Vagrantfile with a single YAML configuration file
|