class Time

clean up warnings caused by web servers that send down 2 digit years

Constants

CENTURY

Public Instance Methods

utc(*args) click to toggle source
# File lib/rubyforge/client.rb, line 12
def utc(*args)
  args[0] += CENTURY if args[0] < 100
  old_utc(*args)
end