Sha256: 070721d04250fa29b03f149c8f9bd8b678d4cd0271766eb2412b2c0a590a4316
Contents?: true
Size: 897 Bytes
Versions: 2
Compression:
Stored size: 897 Bytes
Contents
module RelatonBipm class CommentPeriond # @return [Date] attr_reader :from # @return [Date, NilClass] attr_reader :to # @param from [String] date # @parma to [String, NilClass] date def initialize(from:, to: nil) @from = Date.parse from @to = Date.parse to if to end # @param builder [Nokogiri::XML::builder] def to_xml(builder) builder.commentperiod do builder.from from.to_s builder.to to.to_s if to end end # @return [Hash] def to_hash hash = { "from" => from.to_s } hash["to"] = to.to_s if to hash end # @param prefix [String] # @return [String] def to_asciibib(prefix) pref = prefix.empty? ? prefix : prefix + "." pref += "commentperiod" out = "#{pref}.from:: #{from}\n" out += "#{pref}.to:: #{to}\n" if to out end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
relaton-bipm-1.5.pre | lib/relaton_bipm/comment_periond.rb |
relaton-bipm-1.4.0 | lib/relaton_bipm/comment_periond.rb |