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/core/provider.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

25 lines
460 B
Ruby

module Fog
def self.providers
@providers ||= []
end
module Provider
def self.extended(base)
Fog.providers << base.to_s.split('::').last
end
def service(new_service, path)
Fog.services[new_service] ||= []
Fog.services[new_service] << self.to_s.split('::').last.downcase.to_sym
self.services << new_service
require File.join('fog', path)
end
def services
@services ||= []
end
end
end