Class: Date

Inherits:
Object show all
Defined in:
lib/rext/date/helpers.rb

Instance Method Summary collapse

Instance Method Details

#in_words_since(*args) ⇒ Object Also known as: in_words_since_now



11
12
13
# File 'lib/rext/date/helpers.rb', line 11

def in_words_since *args
  to_time.in_words_since *args
end

#to_time(form = :utc) ⇒ Object

Convert Date to a Time instance.



7
8
9
# File 'lib/rext/date/helpers.rb', line 7

def to_time form = :utc
  Time.send form, year, month, day
end