Skip to content

Commit

Permalink
working vmfusion 0.4 support, 1 monkey patch but now relying on plain…
Browse files Browse the repository at this point in the history
… fission 0.4.0
  • Loading branch information
jedi4ever committed Aug 5, 2012
1 parent 88a79f5 commit ac7964c
Show file tree
Hide file tree
Showing 36 changed files with 140 additions and 1,307 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
source "http://rubygems.org"

#gem "veewee", :path => "."
gem "fission", :path => '/Users/patrick/dev/fission'
#gem "fission", :path => '/Users/patrick/dev/fission'

group :test do
gem "rake"
Expand Down
4 changes: 4 additions & 0 deletions doc/definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ To create a definition you use the 'define' subcommand:

veewee vbox define 'myubuntu' 'ubuntu-10.10-server-amd64'

If you want to use an external repo for the definition you can specify a git-url

veewee vbox define 'myubuntu' 'git://github.com/jedi4ever/myubuntu'

## Modifying a definition
Definitions are stored under a directory 'definitions' relative to the current directory.

Expand Down
8 changes: 3 additions & 5 deletions lib/fission.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

$:.unshift File.join(File.dirname(__FILE__), *%w[.. lib])

require 'fission/error'
#require 'fission/error'
require 'fission/cli'
require 'fission/command'
require 'fission/command_helpers'
require 'fission/command/clone'
require 'fission/command/snapshot_create'
require 'fission/command/snapshot_list'
Expand All @@ -16,12 +17,12 @@
require 'fission/command/status'
require 'fission/command/stop'
require 'fission/command/suspend'
require 'fission/command/delete'
require 'fission/config'
require 'fission/core_ext/class'
require 'fission/core_ext/file'
require 'fission/core_ext/object'
require 'fission/fusion'
require 'fission/lease'
require 'fission/metadata'
require 'fission/response'
require 'fission/ui'
Expand All @@ -35,7 +36,4 @@ def config
@config ||= Fission::Config.new
end

def ui
@ui ||= Fission::UI.new
end
end
76 changes: 0 additions & 76 deletions lib/fission/cli.rb

This file was deleted.

15 changes: 0 additions & 15 deletions lib/fission/command.rb

This file was deleted.

68 changes: 0 additions & 68 deletions lib/fission/command/clone.rb

This file was deleted.

71 changes: 0 additions & 71 deletions lib/fission/command/delete.rb

This file was deleted.

52 changes: 0 additions & 52 deletions lib/fission/command/snapshot_create.rb

This file was deleted.

45 changes: 0 additions & 45 deletions lib/fission/command/snapshot_list.rb

This file was deleted.

Loading

0 comments on commit ac7964c

Please sign in to comment.