Sha256: 2aebac09af6acebd282b57e67d7340cabfbe93c2b6629dc004cbae34e21eb0bb

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 KB

Contents

=begin
  $Id: time.rb,v 1.5 2005/02/02 02:55:59 sam Exp $

  Copyright (C) 2005 Sam Roberts

  This library is free software; you can redistribute it and/or modify it
  under the same terms as the ruby language itself, see the file COPYING for
  details.
=end

require 'date'

# Extensions to builtin Time allowing addition to Time by multiples of other
# intervals than a second.

class Time
    # Returns a new Time, +years+ later than this time. Feb 29 of a
    # leap year will be rounded up to Mar 1 if the target date is not a leap
    # year.
    def plus_year(years)
      Time.local(year + years, month, day, hour, min, sec, usec)
    end

    # Returns a new Time, +months+ later than this time. The day will be
    # rounded down if it is not valid for that month.
    # 31 plus 1 month will be on Feb 28!
    def plus_month(months)
      d = Date.new(year, month, day)
      d >>= months
      Time.local(d.year, d.month, d.day, hour, min, sec, usec)
    end

    # Returns a new Time, +days+ later than this time.
    # Does this do as I expect over DST? What if the hour doesn't exist
    # in the next day, due to DST changes?
    def plus_day(days)
      d = Date.new(year, month, day)
      d += days
      Time.local(d.year, d.month, d.day, hour, min, sec, usec)
    end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
rwdaddresses-1.04 extras/vpim/time.rb
rwdaddresses-1.03 extras/vpim/time.rb
rwdaddresses-1.02 extras/vpim/time.rb
vpim-0.16 lib/vpim/time.rb
vpim-0.17 lib/vpim/time.rb~