From: Tim Heaney Date: 2008-12-09T20:03:42+09:00 Subject: Re: undefined method `parse' for Time:Class Error Srikanth Jeeva writes: > > i used this code .. > > Time.parse("October 20th, 2008, 7:48 pm") > got this error... > > NoMethodError: undefined method `parse' for Time:Class > > can any one help , > how to install the parse method??? You can use the time module. irb(main):005:0> require 'time' => true irb(main):006:0> Time.parse("October 20th, 2008, 7:48 pm") => Mon Oct 20 19:48:00 -0400 2008