vagrant-mos 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/vagrant-mos/command.rb +5 -4
- data/lib/vagrant-mos/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 706a7041979569a7b6b7130f35a87b5bf838c610
|
4
|
+
data.tar.gz: e1dce4f34fc30672ed3967590aaaa6d45cf73f8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f97369a0cda73ec909c4e98770d5a375d3840f117237992df4408356827a88ccdc6aef14603cb8a2e4562ef03ca6cd2de41b3688a30d54163c2039554f64a1b
|
7
|
+
data.tar.gz: 072e254f6a6d2ad5b0e074905c8efeed65ea53de783e26080805ca985294404e3997f5042b832ffd6a049dc908e9ebf136cd89b7f6ac97dcc1c54c9cbec146bc
|
data/lib/vagrant-mos/command.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require "pathname"
|
2
|
-
require_relative
|
2
|
+
require_relative "action/connect_mos"
|
3
|
+
require_relative "action/describe_templates"
|
3
4
|
require "vagrant/action/builder"
|
4
5
|
|
5
6
|
module VagrantPlugins
|
@@ -15,11 +16,11 @@ module VagrantPlugins
|
|
15
16
|
Vagrant::Action::Builder.new.tap do |b|
|
16
17
|
action_root = Pathname.new(File.expand_path("../action", __FILE__))
|
17
18
|
#autoload :ConnectMOS, action_root.join("connect_mos")
|
18
|
-
autoload :DescribeTemplates, action_root.join("describe_templates")
|
19
|
-
puts autoload?(:ConnectMOS)
|
19
|
+
#autoload :DescribeTemplates, action_root.join("describe_templates")
|
20
|
+
#puts autoload?(:ConnectMOS)
|
20
21
|
b.use ConfigValidate
|
21
22
|
b.use VagrantPlugins::MOS::Action::ConnectMOS
|
22
|
-
b.use DescribeTemplates
|
23
|
+
b.use VagrantPlugins::MOS::Action::DescribeTemplates
|
23
24
|
end
|
24
25
|
0
|
25
26
|
end
|
data/lib/vagrant-mos/version.rb
CHANGED