Sha256: fbdc99a1a55601864d692ec437b81099eb6cae55d5499b8687b78ac50028acf1
Contents?: true
Size: 1.76 KB
Versions: 10
Compression:
Stored size: 1.76 KB
Contents
module RelatonIho class IhoBibliographicItem < RelatonBib::BibliographicItem TYPES = %w[policy-and-procedures best-practices supporting-document report legal directives proposal standard].freeze # @return [RelatonIho::CommentPeriod, NilClass] attr_reader :commentperiod # @param editorialgroup [RelatonIho::EditorialGroupCollection] # @param commentperiod [RelatonIho::CommentPeriod, NilClass] def initialize(**args) @commentperiod = args.delete :commentperiod super end # @param hash [Hash] # @return [RelatonIho::IhoBibliographicItem] def self.from_hash(hash) item_hash = ::RelatonIho::HashConverter.hash_to_bib(hash) new **item_hash end # @param opts [Hash] # @option opts [Nokogiri::XML::Builder] :builder XML builder # @option opts [Boolean] :bibdata # @option opts [String] :lang language # @return [String] XML def to_xml(**opts) # rubocop:disable Metrics/AbcSize,Metrics/CyclomaticComplexity,Metrics/MethodLength,Metrics/PerceivedComplexity super ext: !commentperiod.nil?, **opts do |b| if opts[:bibdata] && (doctype || editorialgroup&.presence? || ics.any? || commentperiod) b.ext do b.doctype doctype if doctype editorialgroup&.to_xml b ics.each { |i| i.to_xml b } commentperiod&.to_xml b end end end end # @return [Hash] def to_hash hash = super hash["commentperiod"] = commentperiod.to_hash if commentperiod hash end # @param prefix [String] # @return [String] def to_asciibib(prefix = "") out = super out += commentperiod.to_asciibib prefix if commentperiod out end end end
Version data entries
10 entries across 10 versions & 1 rubygems