Sha256: 06de7d4c45f90b88434123b839461ae501e4e9bd9707474835e49739a4f6f8bb
Contents?: true
Size: 911 Bytes
Versions: 16
Compression:
Stored size: 911 Bytes
Contents
# HTML writer # general resource contacts # History: # Stan Smith 2015-03-24 original script # Stan Smith 2015-07-16 refactored to remove global namespace $HtmlNS require_relative 'html_responsibleParty' module ADIWG module Mdtranslator module Writers module Html class MdHtmlResourceContact def initialize(html) @html = html end def writeHtml(resourceInfo) # classes used htmlParty = MdHtmlResponsibleParty.new(@html) # general - contacts resourceInfo[:pointsOfContact].each do |hResParty| htmlParty.writeHtml(hResParty) end end # def writeHtml end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems