weeks_ago(weeks)
Returns a new date/time the specified number of weeks ago.
# File activesupport/lib/active_support/core_ext/date_and_time/calculations.rb, line 87 def weeks_ago(weeks) advance(weeks: -weeks) end