Class: Puppet::Pops::Time::Timespan::Format::MinuteSegment
Instance Method Summary
collapse
#append_regexp, #append_value, #create_format, #nanoseconds, #set_use_total, #use_total?
Methods inherited from Segment
#append_regexp
Constructor Details
#initialize(padchar, width) ⇒ MinuteSegment
443
444
445
|
# File 'lib/puppet/pops/time/timespan.rb', line 443
def initialize(padchar, width)
super(padchar, width, 2)
end
|
Instance Method Details
#append_to(bld, ts) ⇒ Object
451
452
453
|
# File 'lib/puppet/pops/time/timespan.rb', line 451
def append_to(bld, ts)
append_value(bld, use_total? ? ts.total_minutes : ts.minutes)
end
|
#multiplier ⇒ Object
447
448
449
|
# File 'lib/puppet/pops/time/timespan.rb', line 447
def multiplier
NSECS_PER_MIN
end
|