Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am finding myself repeating typing many strftime which I defined.

Having watch Ryan Bates's railscasts ep 32/33( I think), I created a custom option for the to_s method as in Time.now.to_s, so that I can do Time.now.to_s(:sw), where :sw is my custom method, to retrieve "23 Sep 2010, 5:00PM" for example.

But the problem is, I don't know where to put #sw's definition. Should it be in a file in in the initializer folder? Or should it go in application.rb?

Thanks!

share|improve this question

3 Answers

up vote 12 down vote accepted

I have a time_formats.rb file under the config/initialisers folder containing:

...
Time::DATE_FORMATS[:posts] = "%B %d, %Y"
Time::DATE_FORMATS[:published] = "%B %Y"
...

Someone correct me if I'm wrong but initializers are great for this as they get picked up when the application loads. I think that's the way to go. Hope this is what you are looking for.

share|improve this answer
Okay, I thought so, too.Also because that way, you get to organize these 'helpers' in files rather than in lines in the application.rb Thanks! – Nik Sep 7 '10 at 0:27

Use "time" instead of "date" in your locales file, since Rails timestamps are datetimes.

in config/locales/en.yml

en:
  time:
    formats:
      default: "%Y/%m/%d"
      short: "%b %d"
      long: "%B %d, %Y"

in app/views/posts/show.html.haml

  = l post.updated_at
  = l post.created_at, :format => :long
share|improve this answer
1  
Also, see strftimer.com for help building time formats. – tee Feb 27 at 0:00

Use Rails I18n API.

config/locales/en.yml

en: date: formats: default: "%Y-%m-%d" short: "%b %d" long: "%B %d, %Y"

in views

= l post.updated_at # will use default format of date in locales yml file

see about I18n API

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.