1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[compute|vcloud] move vcloud compute to its own shared area (namespacing should probably be corrected)

This commit is contained in:
geemus 2011-08-24 20:11:42 -05:00
parent 0cc2609f93
commit d6f9fb4c35
49 changed files with 10 additions and 9 deletions

View file

@ -42,7 +42,7 @@ module Fog
require 'fog/compute/storm_on_demand' require 'fog/compute/storm_on_demand'
Fog::Compute::StormOnDemand.new(attributes) Fog::Compute::StormOnDemand.new(attributes)
when :vcloud when :vcloud
require 'fog/compute/vcloud' require 'fog/vcloud/compute'
Fog::Vcloud::Compute.new(attributes) Fog::Vcloud::Compute.new(attributes)
when :virtualbox when :virtualbox
require 'fog/virtual_box/compute' require 'fog/virtual_box/compute'

View file

@ -67,9 +67,8 @@ module Fog
recognizes :vcloud_port, :vcloud_scheme, :vcloud_path, :vcloud_default_vdc recognizes :vcloud_port, :vcloud_scheme, :vcloud_path, :vcloud_default_vdc
recognizes :provider # remove post deprecation recognizes :provider # remove post deprecation
model_path 'fog/compute/models/vcloud' model_path 'fog/vcloud/models/compute'
model :catalog model :catalog
require 'fog/compute/models/vcloud/catalog' # why do I need to do this?
collection :catalogs collection :catalogs
model :catalog_item model :catalog_item
model :catalog_items model :catalog_items
@ -84,7 +83,7 @@ module Fog
model :vdc model :vdc
collection :vdcs collection :vdcs
request_path 'fog/compute/requests/vcloud' request_path 'fog/vcloud/requests/compute'
request :clone_vapp request :clone_vapp
request :configure_network request :configure_network
request :configure_network_ip request :configure_network_ip

View file

@ -1,3 +1,5 @@
require 'fog/vcloud/models/compute/catalog'
module Fog module Fog
module Vcloud module Vcloud
class Compute class Compute

View file

@ -1,4 +1,4 @@
require 'fog/compute/models/vcloud/ip' require 'fog/vcloud/models/compute/ip'
module Fog module Fog
module Vcloud module Vcloud

View file

@ -1,4 +1,4 @@
require 'fog/compute/models/vcloud/network' require 'fog/vcloud/models/compute/network'
module Fog module Fog
module Vcloud module Vcloud

View file

@ -1,4 +1,4 @@
require 'fog/compute/models/vcloud/server' require 'fog/vcloud/models/compute/server'
module Fog module Fog
module Vcloud module Vcloud

View file

@ -1,4 +1,4 @@
require 'fog/compute/models/vcloud/task' require 'fog/vcloud/models/compute/task'
module Fog module Fog
module Vcloud module Vcloud

View file

@ -1,4 +1,4 @@
require 'fog/compute/models/vcloud/vdc' require 'fog/vcloud/models/compute/vdc'
module Fog module Fog
module Vcloud module Vcloud