Method: Time#since
- Defined in:
- lib/active_support/core_ext/time/calculations.rb
#since(seconds) ⇒ Object Also known as: in
Returns a new Time representing the time a number of seconds since the instance time
225 226 227 |
# File 'lib/active_support/core_ext/time/calculations.rb', line 225 def since(seconds) self + seconds end |