Right now I have:
Time.strftime("%I:%M%p") which gives me the hr:min AM/PM format which I need. However it's coming back in UTC and I need it local time zone.
How do I change it to local time zone and keep that same format for time?
|
Right now I have: Time.strftime("%I:%M%p") which gives me the hr:min AM/PM format which I need. However it's coming back in UTC and I need it local time zone. How do I change it to local time zone and keep that same format for time? |
|||||
|
|
Also, remember that as of Rails 2.1, Timezones are supported. in your config/environment.rb file:
You can find other values by running
And Ryan Bates has a great railscast on it: http://railscasts.com/episodes/106-time-zones-in-rails-2-1 |
|||
|
|
|
Generally that should work. You may have your time-zone set incorrectly, though:
This can be affected by the TZ environment variable, your OS locale settings, or your Rails configuration in environment.rb. |
|||
|
|