Sha256: 3e7b725e42e3eb4ca6bc1aa5cf83b24424182b1e36a962505f4118913dde0e6d

Contents?: true

Size: 756 Bytes

Versions: 1

Compression:

Stored size: 756 Bytes

Contents

module Eucalyptus
  class Response < OpenStruct
    # extend OpenStruct to work with nested hashes
    def initialize(hash)
      @table = {}
      @hash_table = {}

      hash.each do |k, v|
        @table[k.to_sym] = (v.is_a?(Hash) ? self.class.new(v) : v)
        @hash_table[k.to_sym] = v

        new_ostruct_member(k)
      end
    end
  end

  class ResponseCollection < Array
    def initialize(klass, koala_response)
      @koala_response = koala_response
      @klass = klass
      self.concat elements(@koala_response)
    end


    def next_page
      next_page = @koala_response.next_page
      self.class.new(@klass, next_page)
    end

    private
    def elements(response)
      response.collect{ |res| @klass.new(res) }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eucalyptus-0.3.2 lib/eucalyptus/response.rb