Skip to content

Instantly share code, notes, and snippets.

@snelson
Created December 19, 2015 04:45
Show Gist options
  • Save snelson/c2c5cacf62d586bb94e6 to your computer and use it in GitHub Desktop.
Save snelson/c2c5cacf62d586bb94e6 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
# ...
around_action :with_timezone
private
def with_timezone
timezone = Time.find_zone(cookies[:timezone])
Time.use_zone(timezone) { yield }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment