Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't seem to find this and I feel like it should be easy. In Ruby on Rails, how do I take:

2010-06-14 19:01:00 UTC

and turn it into

June 14th, 2010

Can I not just use a helper in the view?

share|improve this question
2  

6 Answers

up vote 10 down vote accepted

I don't know for

June 14th, 2010

But if you want

June 14, 2010

Ref how do i get name of the month in ruby on Rails? or this

Just do

@date = Time.now
@date.strftime("%B %d, %Y")

And for suffix use following

@date.strftime("%B #{@date.day.ordinalize}, %Y") # >>> Gives `June 18th, 2010`
share|improve this answer
Perfect, thank you. – bgadoci Jun 15 '10 at 5:53
Or if you want any other date, just convert it to date format first. – paullb Jun 15 '10 at 5:53
That's brilliant. And just revealed to me the strftime functions and each endless options. – gotqn May 6 at 20:31

For future reference: Rails date time formats

share|improve this answer

Needs the Time module for Time.parse and ActiveSupport for Integer#ordinalize:

require 'time'
require 'active_support'

input = '2010-06-14 19:01:00 UTC'
t = Time.parse(input)
date = "%s %s, %d" % [t.strftime("%B"), t.day.ordinalize, t.year]
# => "June 14th, 2010"
share|improve this answer

You don't need to save it in a variable.

Time.now.strftime("%Y-%m-%d")  # 2013-01-08
share|improve this answer

Don't forget, ruby is on rails :D

http://ruby-doc.org/core/classes/Time.html#M000298

share|improve this answer

Just the other day there was a similar question. In my answer http://stackoverflow.com/questions/3022163/how-do-i-get-name-of-the-month-in-ruby-on-rails/3022466#3022466 I showed how you can add a custom to_s definition in your config/environment.rb file.

ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.merge!(
 :my_own_long_date_format => "%B %d, %Y")

Now you can call Time.now.to_s(:my_own_long_date_format) from any view to get:

June 15, 2010
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.