Get Yesterdays Date In Ruby Or Rails

Posted By Weston Ganger

Rails has some awesome date & time methods.

Here’s a few to get the previous date.


# Ruby
Date.today.prev_day

# Rails
Date.yesterday
1.day.ago
Date.today - 1.day


Related External Links:

Article Topic:Software Development - Rails

Date:February 15, 2016