Sha256: d11452314781ee8283690f9008a732cbc4a6647dd787e7ec3fbeaace86426c6b
Contents?: true
Size: 451 Bytes
Versions: 3
Compression:
Stored size: 451 Bytes
Contents
# frozen_string_literal: true require_relative "base_mapper" module LocMods class Form < BaseMapper attribute :content, Shale::Type::String attribute :type, Shale::Type::String attribute :authority, Shale::Type::String xml do root "form" namespace "http://www.loc.gov/mods/v3", nil map_content to: :content map_attribute "type", to: :type map_attribute "authority", to: :authority end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
loc_mods-0.2.4 | lib/loc_mods/form.rb |
loc_mods-0.2.3 | lib/loc_mods/form.rb |
loc_mods-0.2.2 | lib/loc_mods/form.rb |