module BrInvoicesPdf::Nfce::Parser
Constants
- PARSERS
Public Instance Methods
parse(xml)
click to toggle source
# File lib/br_invoices_pdf/nfce/parser.rb, line 26 def parse(xml) PARSERS.reduce({}) do |response, (param, parser)| { **response, param => parser.execute(xml) } end end