class Time

Public Instance Methods

beginning_of_day() click to toggle source
# File lib/mako/core_ext/time.rb, line 6
def beginning_of_day
  Time.new(year, month, day,
           0, 0, 0, utc_offset)
end