Support cookie jar options for all cookie stores

This commit is contained in:
brainopia 2012-04-30 04:14:51 +04:00
parent 0b019cc3b8
commit 4121938626
2 changed files with 14 additions and 0 deletions

@ -74,6 +74,13 @@ def stale_session_check!
class AbstractStore < Rack::Session::Abstract::ID
include Compatibility
include StaleSessionCheck
private
def set_cookie(env, session_id, cookie)
request = ActionDispatch::Request.new(env)
request.cookie_jar[key] = cookie
end
end
end
end

@ -254,6 +254,13 @@ def test_incoming_invalid_session_id_via_parameter_should_be_ignored
end
end
def test_session_store_with_all_domains
with_test_route_set(:domain => :all) do
get '/set_session_value'
assert_response :success
end
end
private
def with_test_route_set(options = {})