« Return to Thread: rspec and cookies

Re: rspec and cookies

by David Green :: Rate this Message:

Reply to Author | View in Thread


Hello David,

2007/1/29, David Green <justnothing@tiscali.co.uk>:
> I know I can use cookies[:name] = 'value' to set a cookie but how would I
> set expiry information on such a cookie? when i try to pass a hash {:value
> => 'value', :expires => 3.days.from_now} the entire hash becomes the value
> of cookies[:name]

When the cookie comes back through the browser, it never has any
expiration or options.  The browser handles that information.  That's
why you can't set those options on the requesting side.

When responding, however... that's another story.

Hope that helps !
--

thanks Francois. That explains a lot.

 « Return to Thread: rspec and cookies