Sha256: 8753b6fde6e3d08468d66bfddd9efe72c671af95089e601f8ba17f766879dabf
Contents?: true
Size: 489 Bytes
Versions: 2
Compression:
Stored size: 489 Bytes
Contents
# encoding: utf-8 module Laximo module Respond class FindVehicleByFrameNo < Laximo::Respond::Base def parsing_result(str) str.xpath('//FindVehicleByFrameNo/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 # FindVehicleByFrameNo 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_by_frame_no.rb |
laximo-0.8 | lib/laximo/respond/oem/find_vehicle_by_frame_no.rb |