Skip to content

Instantly share code, notes, and snippets.

@rkh
Created October 25, 2011 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rkh/1313690 to your computer and use it in GitHub Desktop.
Save rkh/1313690 to your computer and use it in GitHub Desktop.
class DomainSession < Rack::Session::Cookie
def set_cookie(env, headers, cookie)
cookie[:domain] ||= Rack::Request.new(env).host[/(\.[^\.]+){2}$/]
super
end
end
use DomainSession
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment