vagrant-vbox-snapshot 0.0.8 → 0.0.9

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: d3115e75d3574614e02b23bda36a439c2486d875
4
- data.tar.gz: 23b23373765526419d0aea16bedb4d35b4d4adfc
3
+ metadata.gz: 8f488cd5378ea2f34c78e798f2250173f52eff89
4
+ data.tar.gz: f84316bae8559c4bf9e7199dd8297c48c902f651
5
5
  SHA512:
6
- metadata.gz: 3e36f1d8a7feb526d8919b79b929af9f8402bbcf7c5c66c916857f2cfa40e03cfc64bb5438034b56fc71597d113ead3750aa7faa9fc5f5f68cab5efbc3745404
7
- data.tar.gz: 68b9c548ca799140177a0e021e1ec298c008625cdfcd787f5b72c0ddb0daa770b11b3882b52af0c8a7cab588fa35b68ddb6e2d25b2ce47f40529bde2f2695926
6
+ metadata.gz: 2855af7a621f98d64ccb90f6429e4b51443122546266eda10c9dd1e4cf11fe3c1422eb63f0405faa5f00d3f2fe62349653782fe206ab360789d482653f8541f4
7
+ data.tar.gz: 2992fd7b350892153690dea545bcb0e1968d6a76897ac6ad64ca9538a4c2dadd7faebf697337b8f21f3abc8a15c963cea5bb1c2538dad52af5296d6759e13a30
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.0.8](https://github.com/dergachev/vagrant-vbox-snapshot/compare/v0.0.7...v0.0.8) (October 10, 2014)
2
+
3
+ IMPROVEMENTS:
4
+
5
+ - make 'vagrant' dev dependency in Gemfile [#29](https://github.com/dergachev/vagrant-vbox-snapshot/issues/29)
6
+
1
7
  ## [0.0.7](https://github.com/dergachev/vagrant-vbox-snapshot/compare/v0.0.6...v0.0.7) (October 7, 2014)
2
8
 
3
9
  IMPROVEMENTS:
data/Gemfile CHANGED
File without changes
data/Vagrantfile CHANGED
@@ -4,6 +4,7 @@
4
4
 
5
5
  require_relative 'lib/vagrant-vbox-snapshot.rb'
6
6
 
7
+
7
8
  Vagrant.configure("2") do |config|
8
9
 
9
10
  TEST_MULTI_VM = false
@@ -22,7 +22,7 @@ module VagrantPlugins
22
22
  with_target_vms(argv, single_target: true) do |machine|
23
23
  check_runnable_on(machine)
24
24
 
25
- if machine.state.id != :poweroff
25
+ if machine.state.id != :poweroff and machine.state.id != :saved
26
26
  machine.provider.driver.execute("controlvm", machine.id, "poweroff")
27
27
  end
28
28
 
@@ -59,7 +59,7 @@ module VagrantPlugins
59
59
 
60
60
  before_restore(machine)
61
61
 
62
- if machine.state.id != :poweroff
62
+ if machine.state.id != :poweroff and machine.state.id != :saved
63
63
  @env.ui.info("Powering off machine #{vm_id}")
64
64
  machine.provider.driver.execute("controlvm", machine.id, "poweroff")
65
65
  end
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module VBoxSnapshot
3
- VERSION = "0.0.8"
3
+ VERSION = "0.0.9"
4
4
  end
5
5
  end
@@ -1,2 +1,3 @@
1
1
  require_relative 'vagrant-vbox-snapshot/version.rb'
2
2
  require_relative 'vagrant-vbox-snapshot/plugin.rb'
3
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-vbox-snapshot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Dergachev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-10 00:00:00.000000000 Z
11
+ date: 2015-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler