since(seconds)
public
Returns a new Time representing the time a number
of seconds since the instance time
# File activesupport/lib/active_support/core_ext/time/calculations.rb, line 186
def since(seconds)
self + seconds
rescue
to_datetime.since(seconds)
end