vagrant-mos 0.8.88 → 0.8.89

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: af3b074197bf1205c356b20aee146fb2dd82c726
4
- data.tar.gz: 5459f6b1001e3998fa9cb5ff4b0104a9f113d10e
3
+ metadata.gz: 27faf50a7421db08b490b473ea466375be9c9b40
4
+ data.tar.gz: 1cae0458d0744c94b1e41f259c42222bd07bbea4
5
5
  SHA512:
6
- metadata.gz: 00f5280b23842125f8ff83028e07749981b6383d957915b53807ff01677388e305882f30cca0e6e375d430eea89481342e28f546914f9795479722622501e46d
7
- data.tar.gz: 52957aa7b4523f8206f9e704fdb57e5b33e0d382aac05ca5ac03286fba47b155dacbe0675e7b0ebd02df453d41d6a397b4734617f60b168f399b3ba1ed5f0251
6
+ metadata.gz: b5ecc3eb59933272aa2e24d7667602bc04817b5a923787bc03c7e5483bfda28e79c3c73f5b93ae676efd036e1f19db5667c42601ac7b3dfa8cb90143f9ad9ca8
7
+ data.tar.gz: 1c189cf3d4b18a26d6a90f9f051c6b03a9acb85fe1797854119896bca3de4cdabdc782f9b43267f8d647caa52852f4fe2d8ad35c082df6035ae043069b6734f2
@@ -12,11 +12,16 @@ module VagrantPlugins
12
12
  puts "Hello!"
13
13
  Vagrant::Action::Builder.new.tap do |b|
14
14
  b.use ConfigValidate
15
- b.use action/ConnectMOS
16
- b.use action/DescribeTemplates
15
+ b.use ConnectMOS
16
+ b.use DescribeTemplates
17
17
  end
18
18
  0
19
19
  end
20
+
21
+ # The autoload farm
22
+ action_root = Pathname.new(File.expand_path("../action", __FILE__))
23
+ autoload :ConnectMOS, action_root.join("connect_mos")
24
+ autoload :DescribeTemplates, action_root.join("describe_templates")
20
25
  end
21
26
  end
22
27
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MOS
3
- VERSION = '0.8.88'
3
+ VERSION = '0.8.89'
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.8.88
4
+ version: 0.8.89
5
5
  platform: ruby
6
6
  authors:
7
7
  - yangcs2009