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

Version Path
fog-0.1.8 lib/fog/slicehost/models/images.rb
fog-0.1.7 lib/fog/slicehost/models/images.rb
fog-0.1.6 lib/fog/slicehost/models/images.rb
fog-0.1.5 lib/fog/slicehost/models/images.rb
fog-0.1.4 lib/fog/slicehost/models/images.rb
fog-0.1.3 lib/fog/slicehost/models/images.rb
fog-0.1.2 lib/fog/slicehost/models/images.rb
fog-0.1.1 lib/fog/slicehost/models/images.rb
fog-0.1.0 lib/fog/slicehost/models/images.rb
fog-0.0.100 lib/fog/slicehost/models/images.rb
fog-0.0.99 lib/fog/slicehost/models/images.rb
fog-0.0.98 lib/fog/slicehost/models/images.rb
fog-0.0.97 lib/fog/slicehost/models/images.rb
fog-0.0.96 lib/fog/slicehost/models/images.rb
fog-0.0.95 lib/fog/slicehost/models/images.rb
fog-0.0.94 lib/fog/slicehost/models/images.rb
fog-0.0.93 lib/fog/slicehost/models/images.rb
fog-0.0.92 lib/fog/slicehost/models/images.rb
fog-0.0.91 lib/fog/slicehost/models/images.rb
fog-0.0.90 lib/fog/slicehost/models/images.rb