fission 0.3.0.beta.1 → 0.3.0

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.
Files changed (4) hide show
  1. data/CHANGELOG.md +1 -1
  2. data/README.md +15 -1
  3. data/lib/fission/version.rb +1 -1
  4. metadata +5 -5
data/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## head
4
4
 
5
- ## 0.3.0 (09/08/2011)
5
+ ## 0.3.0 (09/16/2011)
6
6
  * add ability to suspend all running VMs ('--all')
7
7
  * add 'delete' command
8
8
  * add 'snapshot create' command
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Fission
2
2
 
3
3
  ## Intro
4
- Fission is a simple command line tool for managing VMware Fusion VMs.
4
+ Fission is a simple command line tool for managing VMware Fusion VMs. Only Fusion 3.x is currently supported.
5
5
 
6
6
 
7
7
  ## Install
@@ -14,64 +14,78 @@ Fission is a simple command line tool for managing VMware Fusion VMs.
14
14
 
15
15
  If you provide '--start', then the new VM will be powered on after cloning
16
16
 
17
+
17
18
  ### Snapshot Create
18
19
  fission snapshot create my_vm snapshot_name
19
20
 
20
21
  Creates a snapshot for the VM
21
22
 
22
23
  In order to create the snapshot:
24
+
23
25
  * The VM must be running
24
26
  * The snapshot name must be unique
25
27
 
28
+
26
29
  ### Snapshot List
27
30
  fission snapshot list my_vm
28
31
 
29
32
  Lists the snapshots for the VM
30
33
 
34
+
31
35
  ### Snapshot Revert
32
36
  fission snapshot revert my_vm existing_snapshot
33
37
 
34
38
  Reverts a VM to an existing snapshot
35
39
 
36
40
  In order to revert to the snapshot:
41
+
37
42
  * The Fusion GUI cannot be running
38
43
 
44
+
39
45
  ### Start
40
46
  fission start my_vm [--headless]
41
47
 
42
48
  Starts the VM
43
49
 
44
50
  Providng '--headless' will start the VM without a Fusion GUI console
51
+
45
52
  Note that the Fusion GUI cannot be running to start a VM with '--headless'
46
53
 
54
+
47
55
  ### Status
48
56
  fission status
49
57
 
50
58
  Displays the status (running or not) of all of the VMs found
51
59
 
60
+
52
61
  ### Stop
53
62
  fission stop my_vm
54
63
 
55
64
  Stops the VM
56
65
 
66
+
57
67
  ### Suspend
58
68
  fission suspend [my_vm | --all]
59
69
 
60
70
  Suspends the VM or all running VMs
61
71
 
72
+
62
73
  ### Delete
63
74
  fission delete my_vm [--force]
64
75
 
65
76
  Deletes the VM. This will delete the files from disk and remove the related metadata in Fusion.
66
77
 
67
78
  By default, the VM will not be deleted if:
79
+
68
80
  * The VM is running
69
81
  * The Fusion GUI is running (as the metadata cannot be cleanly removed)
70
82
 
71
83
  Providing '--force' will:
84
+
72
85
  * Stop the VM if it's running
73
86
  * Delete the VM even if the Fusion GUI is running
74
87
 
88
+
75
89
  ### Help
76
90
  fission -h
77
91
 
@@ -1,3 +1,3 @@
1
1
  module Fission
2
- VERSION = "0.3.0.beta.1"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fission
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: 6
5
- version: 0.3.0.beta.1
4
+ prerelease:
5
+ version: 0.3.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Tommy Bishop
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-09-08 00:00:00 Z
13
+ date: 2011-09-17 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: CFPropertyList
@@ -121,9 +121,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
121
121
  required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  none: false
123
123
  requirements:
124
- - - ">"
124
+ - - ">="
125
125
  - !ruby/object:Gem::Version
126
- version: 1.3.1
126
+ version: "0"
127
127
  requirements: []
128
128
 
129
129
  rubyforge_project: fission