mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
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)
12 lines
214 B
Ruby
12 lines
214 B
Ruby
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
|
|
|
|
module Fog
|
|
module Bluebox
|
|
|
|
extend Fog::Provider
|
|
|
|
service(:compute, 'bluebox/compute')
|
|
service(:dns, 'bluebox/dns')
|
|
|
|
end
|
|
end
|