class Fog::Ecloud::Collection

Public Instance Methods

check_href!(opts = {}) click to toggle source
# File lib/fog/compute/ecloud/models/collection.rb, line 9
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
load(objects) click to toggle source
Calls superclass method
# File lib/fog/compute/ecloud/models/collection.rb, line 4
def load(objects)
  objects = [ objects ] if objects.is_a?(Hash)
  super
end