vagrant-mos 0.8.89 → 0.8.90

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: 27faf50a7421db08b490b473ea466375be9c9b40
4
- data.tar.gz: 1cae0458d0744c94b1e41f259c42222bd07bbea4
3
+ metadata.gz: b365777ebc152858ba91c376495766716958b88a
4
+ data.tar.gz: 071d3d8895cced1ef47ba04d0d75a4b5af2fff7c
5
5
  SHA512:
6
- metadata.gz: b5ecc3eb59933272aa2e24d7667602bc04817b5a923787bc03c7e5483bfda28e79c3c73f5b93ae676efd036e1f19db5667c42601ac7b3dfa8cb90143f9ad9ca8
7
- data.tar.gz: 1c189cf3d4b18a26d6a90f9f051c6b03a9acb85fe1797854119896bca3de4cdabdc782f9b43267f8d647caa52852f4fe2d8ad35c082df6035ae043069b6734f2
6
+ metadata.gz: 1819c50c9eea91b25e1a1bee544ce61f376d62f4d828422b800621022aff7b46d3cc222fd1b8316336f2a0f072a24a9b039673ff2b1b71d70933d5f309d1d641
7
+ data.tar.gz: 906c6799cd2cf43eff3c1085a9eea27157780ab74d083174ddcd0a301be94dc7f8c4a2f1bb9dd6ed03166fae3c5935f261b5532beddbcde00bedef0b61432058
@@ -7,7 +7,10 @@ module VagrantPlugins
7
7
  class Command < Vagrant.plugin(2, :command)
8
8
  # Include the built-in modules so we can use them as top-level things.
9
9
  include Vagrant::Action::Builtin
10
-
10
+ # The autoload farm
11
+ action_root = Pathname.new(File.expand_path("../action", __FILE__))
12
+ autoload :ConnectMOS, action_root.join("connect_mos")
13
+ autoload :DescribeTemplates, action_root.join("describe_templates")
11
14
  def execute
12
15
  puts "Hello!"
13
16
  Vagrant::Action::Builder.new.tap do |b|
@@ -18,10 +21,7 @@ module VagrantPlugins
18
21
  0
19
22
  end
20
23
 
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")
24
+
25
25
  end
26
26
  end
27
27
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module MOS
3
- VERSION = '0.8.89'
3
+ VERSION = '0.8.90'
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.89
4
+ version: 0.8.90
5
5
  platform: ruby
6
6
  authors:
7
7
  - yangcs2009