Sha256: b8f4d255dbaef278be6c0993e4e9850ec9a3ab9cc703575948e39fb5996128de

Contents?: true

Size: 462 Bytes

Versions: 2

Compression:

Stored size: 462 Bytes

Contents

# encoding: utf-8
module Laximo

  module Respond

    class FindVehicle < Laximo::Respond::Base

      def parsing_result(str)

        str.xpath('//FindVehicle/row').inject([]) { |arr, node|

          h = node_to_hash(node) { |h1, n1|
            h1[:attributes] = nodes_to_hash(n1.xpath('./attribute'))
          }

          arr << h unless h.empty?
          arr

        }

      end # parsing_result

    end # FindVehicle

  end # Respond

end # Laximo

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
laximo-0.8.1 lib/laximo/respond/oem/find_vehicle.rb
laximo-0.8 lib/laximo/respond/oem/find_vehicle.rb