Method: Date#pred

Defined in:
lib/axiom/core_ext/date.rb

#predDate

Decrement the Date by one day

Examples:

previous_day = date.pred


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

def pred
  self - 1
end