I'm using Rails 3 and i'm setting my time zone using this method http://railscasts.com/episodes/106-time-zones-in-rails-2-1, is there any good method to apply the time zone to all times retrieved from the system Time.now and the database without having to do something like this: Rails: get #beginning_of_day in time zone and add #in_time_zone
to all of my method calls?
Are there any alternatives?