Sha256: 8cb65e9ef8596a847cf71fe8bfafdf292beaa452061d32fb1291f8fbf18eb7f2
Contents?: true
Size: 770 Bytes
Versions: 29
Compression:
Stored size: 770 Bytes
Contents
# mdJson 2.0 writer - format # History: # Stan Smith 2017-03-18 refactored for mdJson/mdTranslator 2.0 # Josh Bradley original script require 'jbuilder' require_relative 'mdJson_citation' module ADIWG module Mdtranslator module Writers module MdJson module Format def self.build(hFormat) Jbuilder.new do |json| json.formatSpecification Citation.build(hFormat[:formatSpecification]) unless hFormat[:formatSpecification].empty? json.amendmentNumber hFormat[:amendmentNumber] json.compressionMethod hFormat[:compressionMethod] end end # build end # Format end end end end
Version data entries
29 entries across 29 versions & 1 rubygems