Monthly Archives: January 2011

RAILS: configuring authlogic authentication gem on Rails 3

Using Rails 3. This is the most straightforward article on configuring authlogic on Rails 3: http://www.dixis.com/?p=352 There’s only one minor change I had to do, changing this (in ApplicationController): def store_location session[:return_to] = request.request_uri end To this: def store_location session[:return_to] … Continue reading

Posted in configuration, programming | Tagged , , | Leave a comment