today(sg=ITALY)
private
Create a new Date object representing today.
sg specifies the Day of Calendar Reform.
# File lib/date.rb, line 1807
def self.today(sg=ITALY)
t = Time.now
jd = civil_to_jd(t.year, t.mon, t.mday, sg)
new!(jd_to_ajd(jd, 0, 0), 0, sg)
end