From: joep Date: 2007-09-11T01:25:04+09:00 Subject: Time question I am writing a small piece that will include a date that needs to be compared to the current time. EX. a = Time.now b = db_cert_date + (72 months) if(a < b) do something elsif(a > b) do something else else do this end I am looking for the best way to add 72 months onto an old date and then compare it with the current date. Does anyone have any ideas? Thanks in advance