Sha256: 0db9a758042d10e30d109e3999133aaa006607276db4d5540fe7387363c80542
Contents?: true
Size: 1.93 KB
Versions: 3
Compression:
Stored size: 1.93 KB
Contents
# frozen_string_literal: true require_relative "base_mapper" require_relative "date" require_relative "language" require_relative "record_info_note" require_relative "record_identifier" require_relative "record_content_source" module LocMods class RecordInfo < BaseMapper attribute :lang, Shale::Type::String attribute :script, Shale::Type::String attribute :transliteration, Shale::Type::String attribute :display_label, Shale::Type::String attribute :alt_rep_group, Shale::Type::String attribute :record_content_source, RecordContentSource, collection: true attribute :record_creation_date, Date, collection: true attribute :record_change_date, Date, collection: true attribute :record_identifier, RecordIdentifier, collection: true attribute :language_of_cataloging, Language, collection: true attribute :record_origin, Shale::Type::String, collection: true attribute :description_standard, Shale::Type::String, collection: true attribute :record_info_note, RecordInfoNote, collection: true xml do root "recordInfo" namespace "http://www.loc.gov/mods/v3", nil map_attribute "lang", to: :lang map_attribute "script", to: :script map_attribute "transliteration", to: :transliteration map_attribute "displayLabel", to: :display_label map_attribute "altRepGroup", to: :alt_rep_group map_element "descriptionStandard", to: :description_standard map_element "recordContentSource", to: :record_content_source map_element "recordCreationDate", to: :record_creation_date map_element "recordChangeDate", to: :record_change_date map_element "recordIdentifier", to: :record_identifier map_element "recordOrigin", to: :record_origin map_element "recordContentSource", to: :record_content_source map_element "recordInfoNote", to: :record_info_note map_element "languageOfCataloging", to: :language_of_cataloging end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
loc_mods-0.2.4 | lib/loc_mods/record_info.rb |
loc_mods-0.2.3 | lib/loc_mods/record_info.rb |
loc_mods-0.2.2 | lib/loc_mods/record_info.rb |