Sha256: 964702754ba1128a0ae30f65e2da0c9b693cfd670974c2a55f0618b12532b6d0
Contents?: true
Size: 1.75 KB
Versions: 6
Compression:
Stored size: 1.75 KB
Contents
# sbJson 1.0 writer # History: # Stan Smith 2017-05-12 refactored for mdJson/mdTranslator 2.0 # Josh Bradley original script require 'jbuilder' require_relative 'version' require_relative 'sections/sbJson_sbJson' module ADIWG module Mdtranslator module Writers module SbJson def self.startWriter(intObj, responseObj) @contacts = intObj[:contacts] # set output flag for null properties Jbuilder.ignore_nil(!responseObj[:writerShowTags]) # set the format of the output file based on the writer specified responseObj[:writerFormat] = 'json' responseObj[:writerVersion] = ADIWG::Mdtranslator::Writers::SbJson::VERSION # write the sbJson metadata record metadata = SbJson.build(intObj, responseObj) # set writer pass to true if no messages # false or warning state will be set by writer code responseObj[:writerPass] = true if responseObj[:writerMessages].empty? # encode the metadata target as JSON metadata.target! end # find contact in contact array and return the contact hash def self.getContact(contactIndex) if @contacts[contactIndex] return @contacts[contactIndex] end {} end # ignore jBuilder object mapping when array is empty def self.json_map(collection = [], _class) if collection.nil? || collection.empty? return nil else collection.map { |item| _class.build(item).attributes! } end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems