Class: Date
- Inherits:
-
Object
- Object
- Date
- Defined in:
- lib/relative_time.rb
Instance Method Summary collapse
Instance Method Details
#relative_to_now(reference_time = Time.now) ⇒ Object
40 41 42 |
# File 'lib/relative_time.rb', line 40 def relative_to_now(reference_time=Time.now) to_t.relative_to_now(reference_time) end |
#to_t ⇒ Object
44 45 46 |
# File 'lib/relative_time.rb', line 44 def to_t Time.local(year, month, day, 23, 59, 59) end |