Hey,
  I need to get the number of years (as a number) between two dates. Here is
what I have as a helper.

  # Returns the number of years between now and the specified date.
  def years_ago(date)
    dateDifference = DateTime.now - date
    results =Date.day_fraction_to_time(dateDifference)
    return results[0] / 24 / 365;
  end

I'm sure there is a better way to do this. What is it?

Thanks,
Jim

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to