Sha256: aa98f9ccde3db32e6d163023c53a5032f2524ff43af5370585e13718219b88e6
Contents?: true
Size: 405 Bytes
Versions: 46
Compression:
Stored size: 405 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_white ) end end end end end
Version data entries
46 entries across 46 versions & 1 rubygems