Sha256: f8a31a97b1ab8934475666cc47454ec750a4477b169fd3bcd875960c70c8f354
Contents?: true
Size: 704 Bytes
Versions: 27
Compression:
Stored size: 704 Bytes
Contents
module Fog module Ecloud class Collection < Fog::Collection def load(objects) objects = [ objects ] if objects.is_a?(Hash) super end def check_href!(opts = {}) unless href opts = { :parent => opts } if opts.is_a?(String) msg = ":href missing, call with a :href pointing to #{if opts[:message] opts[:message] elsif opts[:parent] "the #{opts[:parent]} whos #{self.class.to_s.split('::').last.downcase} you want to enumerate" else "the resource" end}" raise Fog::Errors::Error.new(msg) end end end end end
Version data entries
27 entries across 25 versions & 6 rubygems