vagrant-saltdeps 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 22cb89abcb3064923a7aa8e823f67d1b3b2c7f5f
4
- data.tar.gz: d0359388b03c827b41f8d5e7a6ebcf90449fa0f0
3
+ metadata.gz: 257a5f2a42061257b622a1ac9a59c604947069ba
4
+ data.tar.gz: 241165cda6b1b1b829653992bcce0f90d10eb73e
5
5
  SHA512:
6
- metadata.gz: 292f91131d8429e6fd521321fbc54a2217680aedb9206c4f8e10f3152125a009e8e4ca758145a281011bdffd03ce42142ead78c1902612a21c231af4d6668a9a
7
- data.tar.gz: a3f210ea1ff001a2c9ae20947fa5a23dcd36e77cb5d73657b05e9e6fa80c8896c6ecc5f2e7f4428a836724ee42229b1a78af312d4976b111e9cdb0fead159674
6
+ metadata.gz: 6e651d6d102cad89f4d56d2ba884ed33521d7278209d72688522dfcb823471bac573fccf4022f56decc1cfb481085d27cf879739c1a5fc0f9635f2d427c8dadf
7
+ data.tar.gz: 28d45e5bd1d84b46cebef9cefae8dcf08b599c00e1153c41b14ac27137ac6f918b5f98ff97d895a8d1733856176a4375dca6b5aa4e7ab7b52c3828b16a7a4218
@@ -33,7 +33,7 @@ module Vagrant
33
33
  g.checkout(branch)
34
34
  g.pull
35
35
  rescue Git::GitExecuteError => e
36
- raise GitCheckoutError.new :branch => branch, :message => e.message
36
+ raise Errors::GitCheckoutError :branch => branch, :message => e.message
37
37
  end
38
38
 
39
39
  config_loader.set(:base_vagrantfile, "#{checkout_path}/#{name}/Vagrantfile")
@@ -1,12 +1,14 @@
1
-
1
+ require "vagrant"
2
2
 
3
3
  module VagrantPlugins
4
4
  module Saltdeps
5
- class GitCheckoutError < Vagrant::Errors::VagrantError
6
- error_key "git_checkout_error"
7
- end
8
- class UnknownException < Vagrant::Errors::VagrantError
9
- error_key "unknown_error"
5
+ module Errors
6
+ class GitCheckoutError < Vagrant::Errors::VagrantError
7
+ error_key "git_checkout_error"
8
+ end
9
+ class UnknownException < Vagrant::Errors::VagrantError
10
+ error_key "unknown_error"
11
+ end
10
12
  end
11
13
  end
12
- end
14
+ end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Saltdeps
3
- VERSION = '1.1.1'
3
+ VERSION = '1.1.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-saltdeps
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joseph Hughes