Sha256: f57566b97783e28ab2c8d97c30695498dbe5c07440c03d1398f7a583b5529950
Contents?: true
Size: 386 Bytes
Versions: 18
Compression:
Stored size: 386 Bytes
Contents
module GeoConcerns module Extractors module ModsHelper NS = { 'xmlns:mods' => 'http://www.loc.gov/mods/v3' }.freeze def extract_mods_metadata(doc) { title: [doc.at_xpath('//mods:mods/mods:titleInfo/mods:title', NS).text], description: [doc.at_xpath('//mods:mods/mods:abstract', NS).text] } end end end end
Version data entries
18 entries across 18 versions & 1 rubygems