class Date

Public Instance Methods

d() click to toggle source
# File lib/supplement/date.rb, line 11
def d ; day   ; end
m() click to toggle source
# File lib/supplement/date.rb, line 10
def m ; month ; end
to_a() click to toggle source
# File lib/supplement/date.rb, line 13
def to_a ; [ year, month, day ] ; end
y() click to toggle source
# File lib/supplement/date.rb, line 9
def y ; year  ; end