Class/Module Index [+]

Quicksearch

Fog::Parsers::Terremark::Shared::GetKeysList

Public Instance Methods

end_element(name) click to toggle source
# File lib/fog/terremark/parsers/shared/get_keys_list.rb, line 41
def end_element(name)
  case name
  when 'Id', 'Href', 'Name', 'IsDefault','FingerPrint'
  @key[name] = value
  when 'Key'
    @response['Keys'] << @key
    @key = {}
  end
end
reset() click to toggle source
# File lib/fog/terremark/parsers/shared/get_keys_list.rb, line 9
def reset
  @response = { 'Keys' => [] }
  @key = {}
end
start_element(name, attributes) click to toggle source
# File lib/fog/terremark/parsers/shared/get_keys_list.rb, line 14
def start_element(name, attributes)
  super
  case name
  when 'Id', 'Href', 'Name', 'IsDefault','FingerPrint'
    data = {}
    until attributes.empty?
      data[attributes.shift] = attributes.shift
    end
    @key[name] = data
  when 'Key'
    until attributes.empty?
      @key[attributes.shift] = attributes.shift
    end
  when 'Keys'
    keys_list = {}
    until attributes.empty?
      if attributes.first.is_a?(Array)
        attribute = attributes.shift
        keys_list[attribute.first] = attribute.last
      else
        keys_list[attributes.shift] = attributes.shift
      end
    end
    @response['href'] = keys_list['href']
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.