Sha256: 6ac36123db8c63cd1da56f0c3767c0b39565d1724bb8bf1f61044b3cd6025f46
Contents?: true
Size: 1023 Bytes
Versions: 10
Compression:
Stored size: 1023 Bytes
Contents
module Fog module Parsers module Terremark module Shared class Task < Fog::Parsers::Base def reset @response = {} end def start_element(name, attributes) super case name when 'Owner', 'Result' data = {} until attributes.empty? data[attributes.shift] = attributes.shift end @response[name] = data when 'Task' task = {} until attributes.empty? if attributes.first.is_a?(Array) attribute = attributes.shift task[attribute.first] = attribute.last else task[attributes.shift] = attributes.shift end end @response.merge!(task.reject {|key,value| !['endTime', 'href', 'startTime', 'status', 'type'].include?(key)}) end end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems