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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23799a72d20be60a292d012c4dabb892386e1b26
4
- data.tar.gz: 7984e61371dcecaedbe84b4d4e11e5280741b0ce
3
+ metadata.gz: 706a7041979569a7b6b7130f35a87b5bf838c610
4
+ data.tar.gz: e1dce4f34fc30672ed3967590aaaa6d45cf73f8c
5
5
  SHA512:
6
- metadata.gz: 60183d167b3db138dd74792910bbd332e55b900d6e644aceac57283dbcb38db2dea2c6bd81a20dc93acd352cf42fa354ca4e6392abd35f55a5a70a49bd2292a7
7
- data.tar.gz: a4a66d29bc4a5402fd3af5f0480d10948f1c151fcbf8f70e8c63057e466b6bf118c5d43fa09b5656c4d17fd573789920a11981e4d19eb2dd10d558ecf9c84da4
6
+ metadata.gz: 3f97369a0cda73ec909c4e98770d5a375d3840f117237992df4408356827a88ccdc6aef14603cb8a2e4562ef03ca6cd2de41b3688a30d54163c2039554f64a1b
7
+ data.tar.gz: 072e254f6a6d2ad5b0e074905c8efeed65ea53de783e26080805ca985294404e3997f5042b832ffd6a049dc908e9ebf136cd89b7f6ac97dcc1c54c9cbec146bc
@@ -1,5 +1,6 @@
1
1
  require "pathname"
2
- require_relative 'action/connect_mos'
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
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MOS
3
- VERSION = '0.9.1'
3
+ VERSION = '0.9.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-mos
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - yangcs2009