vagrant-vbox-snapshot 0.0.1 → 0.0.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 +8 -8
- data/DEVNOTES.md +1 -0
- data/README.md +11 -6
- data/Rakefile +2 -0
- data/lib/vagrant-vbox-snapshot/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
M2Q3MjFmMjUyYjY1Yzk1OThlOGRlZWI3YWU1YTM3YmY4NDNjYTFjNg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YzlmYjhjN2M1MjY2OWUyNGE2MzU2OGQzYmFiOWU2MTBlYmU3NzYyMg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NDU4ZmZkMTdlMjVjNzc5ZWMxNTIzZDYzNTViNDRkYThkODYzMmUyN2NkMzcx
|
10
|
+
NzBhNWI5ZGY5ZWExYTE5NGNmMWQ3NTY0YTY1YzJkN2I3MGJkMmMzMGY3NzZl
|
11
|
+
NTllMGU4M2Q2NGQwZWI1YTlmNDk1NzA5NDYyOTlhYjM2MWFlNTA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MTU2ZDY1NzgxOWM5YmUxNzYyZDg5Y2RhNmVhYTUxYTlhYTIzOGI5YjhiYzBj
|
14
|
+
NmQzNjE4Yjc5NzRmNDgxMWQ1OWRlZDExMGZiNTFjNDJkNzA4NjlhYmFiNWI4
|
15
|
+
NWMzMjdmZTgwNGM0MTMxZTkxYjUwZjYzMTEwYjMwMWY5MzNjZDE=
|
data/DEVNOTES.md
CHANGED
data/README.md
CHANGED
@@ -12,12 +12,17 @@ Ensure you have Vagrant 1.1+ installed, then run:
|
|
12
12
|
|
13
13
|
The following commands are added by this plugin:
|
14
14
|
|
15
|
-
vagrant
|
16
|
-
vagrant
|
17
|
-
vagrant
|
18
|
-
vagrant
|
19
|
-
vagrant
|
20
|
-
|
15
|
+
vagrant snapshot take [NAME] # take snapshot, labeled by NAME
|
16
|
+
vagrant snapshot list # list snapshots
|
17
|
+
vagrant snapshot back # restore last taken snapshot
|
18
|
+
vagrant snapshot delete SNAP_NAME # delete specified snapshot
|
19
|
+
vagrant snapshot go SNAP_NAME # restore specified snapshot
|
20
|
+
|
21
|
+
## Caveats
|
22
|
+
|
23
|
+
* Not compatible with Vagrant <1.1. If you need this, try [another solution](#other-solutions).
|
24
|
+
* Does not support multiple VMs. (Pull requests encouraged).
|
25
|
+
* Only minimally tested.
|
21
26
|
|
22
27
|
## Other solutions
|
23
28
|
|
data/Rakefile
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vagrant-vbox-snapshot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Dergachev
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- DEVNOTES.md
|
49
49
|
- Gemfile
|
50
50
|
- README.md
|
51
|
+
- Rakefile
|
51
52
|
- lib/vagrant-vbox-snapshot.rb
|
52
53
|
- lib/vagrant-vbox-snapshot/commands/back.rb
|
53
54
|
- lib/vagrant-vbox-snapshot/commands/delete.rb
|