views:

20

answers:

1

Is this possible out of the box with Rails? or is an add-on or hack required?

thxs

A: 

It isn't possible out of the box, but you can install one gem and get any authentication system you want.

  1. RESTful authentication;
  2. Authlogic;
  3. Devise.

And so forth. There are many solutions to solve your task. Just choose one.

floatless
Any recommendations? I'm a day 1 newbie moving from ColdFusion.
AnApprentice
I recommend you to watch http://railscasts.com/episodes/67-restful-authentication and http://railscasts.com/episodes/21-super-simple-authentication to get the idea about how to deal with those plugins. It's very easy! Just install one of them and generate some stuff (you can use screencasts, step-by-step guides, tutorials).
floatless