2
votes
1answer
36 views

Keep state of user in rails app with extra details

I am new to rails , previously I have worked extensively with Yii (PHP, MVC framework) . Yii , allowed web user methods to set state variable , such as Yii::app()->user->userid ...
1
vote
4answers
773 views

How to implement a “Remember Me” function in Rails 3?

What are the best practices to implement a "Remember Me" function in Rails 3 application ? I store session information (session id + user id) in the database when user logs in, and I don't want to ...
4
votes
2answers
610 views

Rails — “remember me” capability

I am having trouble understanding the implementation of "Remember Me" in the Ruby on Rails Tutorial by Michael Hartl. He creates a SessionsHelper module with methods for signing in, containing the ...
4
votes
1answer
2k views

Devise + Omniauth + Rememberable

I followed the tutorial on the github devise wiki : https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview So I've created a omniauth controller for the callbacks, but it is bypassing the ...
4
votes
2answers
1k views

remember_me with warden

For my lastest project I'm using https://github.com/hassox/rails_warden. It suits my needs very well except that I can't find a good way to implement remember_me. I know that it's notoriously ...