mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
62e1c092e0
closes #901
34 lines
578 B
Ruby
34 lines
578 B
Ruby
require 'fog/vmfusion'
|
|
require 'fog/compute'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Vmfusion < Fog::Service
|
|
|
|
model_path 'fog/vmfusion/models/compute'
|
|
model :server
|
|
collection :servers
|
|
|
|
class Mock
|
|
|
|
def initialize(options={})
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
|
|
class Real
|
|
|
|
def initialize(options={})
|
|
begin
|
|
require 'fission'
|
|
rescue LoadError => e
|
|
retry if require('rubygems')
|
|
raise e.message
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|