module Date

Public Instance Methods

today(sg=Date::ITALY) click to toggle source
# File lib/delorean.rb, line 18
def today(sg=Date::ITALY)
  t = Time.now
  Date.civil(t.year, t.mon, t.mday)
end