I can\'t set timezone on Rails using its abbreviation, for example:
>> Time.zone = \'BRT\' ArgumentError: Invalid Timezone: BRT from /home/braulio/
You don't have to use around_filter. Put this in before_action
before_action
Time.zone = "Etc/GMT#{gmt_offset}"
(Time.zone is thread local. It's safe to change.)