Sha256: aba011ef0a7268716d0a1fbf8b8d9c3626af30ff9334f864015b3a60a53da99f
Contents?: true
Size: 1017 Bytes
Versions: 70
Compression:
Stored size: 1017 Bytes
Contents
# mdJson 2.0 writer - graphic overview # History: # Stan Smith 2017-03-12 refactored for mdJson/mdTranslator 2.0 # Josh Bradley original script require 'jbuilder' require_relative 'mdJson_constraint' require_relative 'mdJson_onlineResource' module ADIWG module Mdtranslator module Writers module MdJson module GraphicOverview @Namespace = ADIWG::Mdtranslator::Writers::MdJson def self.build(hGraphic) Jbuilder.new do |json| json.fileName hGraphic[:graphicName] json.fileDescription hGraphic[:graphicDescription] json.fileType hGraphic[:graphicType] json.fileConstraint @Namespace.json_map(hGraphic[:graphicConstraints], Constraint) json.fileUri @Namespace.json_map(hGraphic[:graphicURI], OnlineResource) end end # build end # GraphicOverview end end end end
Version data entries
70 entries across 70 versions & 1 rubygems