I've been trying to apply the gist provided in the issue tracker to add the secure and httponly options and methods on Authlogic cookies, but I'm having some difficulty. I applied the patch and have gotten the new attributes to show up in my cookies, and I'd like for them to be set by default, so I tried to set them using the second approach suggested in the patch comments using

   class UserSession < Authlogic::Session::Base
     httponly true
     secure true
   end

However, Rails complains that the 'httponly' and 'secure' methods don't exist. From the comments it doesn't appear that anyone else is having this problem, and I haven't been able to find any other documentation on this. Am I missing something?

link|improve this question

75% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.