Sha256: ee8080a6ed811d8f87b459fdf9daf38135d3c4900e7c81c246d74845bf1b1e8e
Contents?: true
Size: 337 Bytes
Versions: 6
Compression:
Stored size: 337 Bytes
Contents
module Krikri ## # A MODS parser. Uses XML parser with a root path to match the # metadata path. # @see Krikri::XmlParser class ModsParser < XmlParser def initialize(record, root_path = '//mods:mods', ns = {}) ns = { mods: 'http://www.loc.gov/mods/v3' }.merge(ns) super(record, root_path, ns) end end end
Version data entries
6 entries across 6 versions & 1 rubygems