Skip to content

Instantly share code, notes, and snippets.

@mmmurf
Forked from rkh/gist:1313690
Created October 25, 2011 18:10
Show Gist options
  • Save mmmurf/1313698 to your computer and use it in GitHub Desktop.
Save mmmurf/1313698 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