Sha256: 012f9638ba1290c90f0903beca895f2d7fb8edc9b308d27dc707471b52a15e1f
Contents?: true
Size: 1.63 KB
Versions: 4
Compression:
Stored size: 1.63 KB
Contents
# mdJson 2.0 writer - dictionary # History: # Stan Smith 2017-11-09 add data dictionary description # Stan Smith 2017-03-11 refactored for mdJson/mdTranslator 2.0 # Josh Bradley original script require 'jbuilder' require_relative 'mdJson_citation' require_relative 'mdJson_responsibleParty' require_relative 'mdJson_locale' require_relative 'mdJson_domain' require_relative 'mdJson_entity' module ADIWG module Mdtranslator module Writers module MdJson module Dictionary @Namespace = ADIWG::Mdtranslator::Writers::MdJson def self.build(hDictionary) Jbuilder.new do |json| json.description hDictionary[:description] json.subject hDictionary[:subjects] unless hDictionary[:subjects].empty? json.citation Citation.build(hDictionary[:citation]) unless hDictionary[:citation].empty? json.recommendedUse hDictionary[:recommendedUses] unless hDictionary[:recommendedUses].empty? json.locale @Namespace.json_map(hDictionary[:locales], Locale) json.responsibleParty ResponsibleParty.build(hDictionary[:responsibleParty]) json.dictionaryFormat hDictionary[:dictionaryFormat] json.dictionaryIncludedWithResource hDictionary[:includedWithDataset] json.domain @Namespace.json_map(hDictionary[:domains], Domain) json.entity @Namespace.json_map(hDictionary[:entities], Entity) end end # build end # Dictionary end end end end
Version data entries
4 entries across 4 versions & 1 rubygems