1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/terremark.rb
geemus b2c8ff0388 [core] work toward separate requires
Should facilitate the following:

    require 'fog/aws'
    require 'fog/compute'
    require 'fog/aws/compute'

I think once you `require 'rubygems'` those should work.

further cleanup should reduce common requires (ie nokogiri)
2011-08-31 15:52:53 -05:00

11 lines
282 B
Ruby

require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
require 'fog/terremark/shared'
require 'fog/terremark/parser'
require 'fog/terremark/vcloud'
module Fog
module Terremark
VCLOUD_OPTIONS = [:terremark_vcloud_username, :terremark_vcloud_password]
end
end