Re: DateTime and speed question

I recieve the following error at home and at work

irb(main):001:0> ri Time.parse
NoMethodError: undefined method `parse’ for Time:Class
from (irb):1

On Tue, 2006-02-14 at 04:24 +0900, Mike F. wrote:

Charlie B. wrote:

The Time class doesn’t appear to have any methods to parse a string
into

a time object or to find the difference of two times. How can this
be

On Feb 13, 2006, at 1:42 PM, Charlie B. wrote:

I recieve the following error at home and at work

irb(main):001:0> ri Time.parse
NoMethodError: undefined method `parse’ for Time:Class
from (irb):1

Start irb with -r time as was shown with the example, or require
“time” once it is running.

James Edward G. II