vagrant-itamae 0.1.0 → 0.2.0
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/README.md +5 -0
- data/lib/vagrant-itamae/config.rb +3 -0
- data/lib/vagrant-itamae/provisioner.rb +1 -0
- data/lib/vagrant-itamae/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07ee0fb7b59eee9464e072c87253addeceed7aff
|
4
|
+
data.tar.gz: c7fce72ff8a3c5327146ea4a4f808fda63564889
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8418b10650ddf2bf6105593950bdd58668f51b2b6b65def939bee08e771910a82a2eb37041a38f437831fdf80de5064437bfd8c8b11a7657cbfcef92633e6836
|
7
|
+
data.tar.gz: f8f9b12855a51bafefa6c7f3b5b0acd12ff0dfdde43285ec32aebd9c63f0ca78214d664d877270bac605a1300a69284a4684661e1ab64c7e9e87395b6eb09787
|
data/README.md
CHANGED
@@ -26,6 +26,11 @@ end
|
|
26
26
|
vagrant plugin install vagrant-itamae
|
27
27
|
```
|
28
28
|
|
29
|
+
## about Itamae plugin
|
30
|
+
|
31
|
+
vagrant-itamae does not support [itamae plugins](https://rubygems.org/search?utf8=%E2%9C%93&query=itamae-plugin).
|
32
|
+
If you want to use itamae plugins with vagrant-itamae then try to use [vagrant-multiplug](https://github.com/r7kamura/vagrant-multiplug)
|
33
|
+
|
29
34
|
## Contributing
|
30
35
|
|
31
36
|
1. Fork it ( https://github.com/chiastolite/vagrant-itamae/fork )
|
@@ -5,12 +5,14 @@ module VagrantPlugins
|
|
5
5
|
attr_accessor :yaml
|
6
6
|
attr_accessor :sudo
|
7
7
|
attr_accessor :recipes
|
8
|
+
attr_accessor :shell
|
8
9
|
|
9
10
|
def initialize
|
10
11
|
@recipes = UNSET_VALUE
|
11
12
|
@json = UNSET_VALUE
|
12
13
|
@yaml = UNSET_VALUE
|
13
14
|
@sudo = UNSET_VALUE
|
15
|
+
@shell = UNSET_VALUE
|
14
16
|
end
|
15
17
|
|
16
18
|
def finalize!
|
@@ -19,6 +21,7 @@ module VagrantPlugins
|
|
19
21
|
|
20
22
|
@json = nil if @json == UNSET_VALUE
|
21
23
|
@yaml = nil if @yaml == UNSET_VALUE
|
24
|
+
@shell = nil if @shell == UNSET_VALUE
|
22
25
|
|
23
26
|
@sudo = false if @sudo == UNSET_VALUE
|
24
27
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-itamae
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- chiastolite
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: itamae
|
@@ -100,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
100
|
version: '0'
|
101
101
|
requirements: []
|
102
102
|
rubyforge_project:
|
103
|
-
rubygems_version: 2.
|
103
|
+
rubygems_version: 2.4.5.1
|
104
104
|
signing_key:
|
105
105
|
specification_version: 4
|
106
106
|
summary: Vagrant plugin for itamae
|