Sha256: a9dbdc8649bf1c1c5966634ead77aecb76c3d2916b8c94612264dd1aa6bc11ba
Contents?: true
Size: 799 Bytes
Versions: 70
Compression:
Stored size: 799 Bytes
Contents
# mdJson 2.0 writer - attribute group # History: # Stan Smith 2017-03-16 refactored for mdJson/mdTranslator 2.0 # Josh Bradley original script require 'jbuilder' require_relative 'mdJson_attribute' module ADIWG module Mdtranslator module Writers module MdJson module AttributeGroup def self.build(hGroup) @Namespace = ADIWG::Mdtranslator::Writers::MdJson Jbuilder.new do |json| json.attributeContentType hGroup[:attributeContentTypes] unless hGroup[:attributeContentTypes].empty? json.attribute @Namespace.json_map(hGroup[:attributes], Attribute) end end # build end # AttributeGroup end end end end
Version data entries
70 entries across 70 versions & 1 rubygems