module TZInfo::OffsetRationals

def rational_for_offset(offset)

seconds represents (i.e. equivalent to Rational(offset, 86400)).
Returns a Rational expressing the fraction of a day that offset in
def rational_for_offset(offset)
  @@rational_cache[offset] || Rational(offset, 86400)      
end