9 lines
163 B
Ruby
9 lines
163 B
Ruby
|
require_relative '../profile_helper'
|
||
|
|
||
|
xml = read_big_xml
|
||
|
parser = Oga::XML::PullParser.new(xml)
|
||
|
|
||
|
profile_memory('pull_parser/big_xml')
|
||
|
|
||
|
parser.parse { |node| }
|