Sha256: dbf5a502399afdc4008cc60825fc0a85d49588c1bb0b1892dab01b399926c53f
Contents?: true
Size: 387 Bytes
Versions: 36
Compression:
Stored size: 387 Bytes
Contents
module Krikri ## # A MARCXML parser. Uses XML parser with a root path to match the # metadata path. # @see Krikri::XmlParser class MARCXMLParser < XmlParser include Krikri::OaiParserHeaders def initialize(record, root_path = '//marc:record', ns = {}) ns = { marc: 'http://www.loc.gov/MARC21/slim' }.merge(ns) super(record, root_path, ns) end end end
Version data entries
36 entries across 36 versions & 1 rubygems