Sha256: 8384771fa11c74d5644d06e8da748ab75ac61356b58795bd0f79e4a875fb0bab
Contents?: true
Size: 734 Bytes
Versions: 42
Compression:
Stored size: 734 Bytes
Contents
require 'fog/collection' require 'fog/slicehost/models/image' module Fog module Slicehost class Mock def images(attributes = {}) Fog::Slicehost::Images.new({ :connection => self }.merge!(attributes)) end end class Real 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
42 entries across 42 versions & 1 rubygems