Class: Date

Inherits:
Object
  • Object
show all
Defined in:
ext/date.rb

Instance Method Summary collapse

Instance Method Details

#fancy_formatObject



6
7
8
# File 'ext/date.rb', line 6

def fancy_format
  self.strftime("%b %d, %Y")    
end

#standard_formatObject



2
3
4
# File 'ext/date.rb', line 2

def standard_format
  self.strftime("%m-%d-%Y")
end