Class: Date

Inherits:
Object
  • Object
show all
Defined in:
lib/axiom/core_ext/date.rb

Overview

Extend Date with methods to find the previous Date

Instance Method Summary collapse

Instance Method Details

#predDate

Decrement the Date by one day

Examples:

previous_day = date.pred

Returns:



15
16
17
# File 'lib/axiom/core_ext/date.rb', line 15

def pred
  self - 1
end