Sha256: e9e61ad3056b31227a26bf2d4d29a3bafad982a92025ad27a7b350d1f0ab150b
Contents?: true
Size: 1.26 KB
Versions: 6
Compression:
Stored size: 1.26 KB
Contents
module VirtualBox # deviates from other bin stuff to accomodate gem class << self def class_for(key) case key when :compute Fog::VirtualBox::Compute else raise ArgumentError, "Unrecognized service: #{key}" end end def [](service) @@connections ||= Hash.new do |hash, key| hash[key] = case key when :compute Fog::Compute.new(:provider => 'VirtualBox') else raise ArgumentError, "Unrecognized service: #{key.inspect}" end end @@connections[service] end def available? availability = !Gem.source_index.find_name('virtualbox').empty? if availability for service in services for collection in self.class_for(service).collections unless self.respond_to?(collection) self.class_eval <<-EOS, __FILE__, __LINE__ def self.#{collection} self[:#{service}].#{collection} end EOS end end end end availability end def collections services.map {|service| self[service].collections}.flatten.sort_by {|service| service.to_s} end def services Fog::VirtualBox.services end end end
Version data entries
6 entries across 6 versions & 1 rubygems