Sha256: ecc71b91ea09c83f68748b2edf3d22c490de067a4445979039794f87be79d17d
Contents?: true
Size: 577 Bytes
Versions: 33
Compression:
Stored size: 577 Bytes
Contents
require 'fog/collection' require 'fog/slicehost/models/image' module Fog module Slicehost module Collections def images(attributes = {}) Fog::Slicehost::Images.new({ :connection => self }.merge!(attributes)) end end class Images < Fog::Collection model Fog::Slicehost::Image def all data = connection.get_images.body['images'] load(data) end def get(image_id) connection.get_image(image_id) rescue Excon::Errors::Forbidden nil end end end end
Version data entries
33 entries across 33 versions & 2 rubygems