Sha256: 29b372857984c7a7b1b05f8764d5573b8cec07b441aa29f38d627db5811f59f0
Contents?: true
Size: 871 Bytes
Versions: 46
Compression:
Stored size: 871 Bytes
Contents
# mdJson 2.0 writer - geologic age # History: # Stan Smith 2017-11-08 original script require 'jbuilder' require_relative 'mdJson_citation' module ADIWG module Mdtranslator module Writers module MdJson module GeologicAge def self.build(hGeoAge) @Namespace = ADIWG::Mdtranslator::Writers::MdJson Jbuilder.new do |json| json.ageTimeScale hGeoAge[:ageTimeScale] json.ageEstimate hGeoAge[:ageEstimate] json.ageUncertainty hGeoAge[:ageUncertainty] json.ageExplanation hGeoAge[:ageExplanation] json.ageReference @Namespace.json_map(hGeoAge[:ageReferences], Citation) end end # build end # GeologicAge end end end end
Version data entries
46 entries across 46 versions & 1 rubygems