I have a datetime attribute on a record:
1.9.3p194 :024> f.last_contact
=> Thu, 11 Aug 2011 00:00:00 UTC +00:00
But when I try time_ago_in_words
at the console, it doesn't work:
> time_ago_in_words(f.last_contact)
NoMethodError: undefined method `time_ago_in_words' for main:Object
I also tried distance_of_time_in_words
which the docs say should work with Time, Date & DateTime objects.
> to_time = Time.now
=> 2012-09-08 12:22:16 -0500
> distance_of_time_in_words(f.last_contact, to_time)
NoMethodError: undefined method `distance_of_time_in_words' for main:Object
What is the cause of this? Shouldn't Rails Console load all the necessary libraries and dependencies for all of Rails methods to work?