Sha256: 702b26f373d9433c6bfa0e78328db6f80417cd3a965176a01c349ab1d3323766
Contents?: true
Size: 406 Bytes
Versions: 157
Compression:
Stored size: 406 Bytes
Contents
# frozen_string_literal: true require 'ox' require 'stringio' module Aws module Xml class Parser class OxEngine def initialize(stack) @stack = stack end def parse(xml) Ox.sax_parse( @stack, StringIO.new(xml), :convert_special => true, :skip => :skip_return ) end end end end end
Version data entries
157 entries across 157 versions & 1 rubygems