views:

1723

answers:

1

I'm having trouble deciding between the two. They both seem like great plugins but I'd like to know which is easier to control.

What are your guy's experiences with these plugins? Which would you recommend?

+11  A: 

I would prefer Authlogic than using Restful authentication .

Is you use authologic with one big advantage over Restful authentication it comes as both gem/plugin rather than a generator as in restful_authentication, it doesn't mess your application with lots of code .

Using Authlogic it's easy to understand and it's cleaner compare to that of Restful authentication .

If your application requires email activation then use the act_as_state machine plugin with authologic.

"It's worth spending time creating two applications using Authologic and Restful Authentication and select the best according to your needs :)"

Good luck!

YetAnotherCoder
Do you mean this plugin?: http://github.com/rubyist/aasm/tree/masterCould you provide a link to an example of how to use it for email activation?
c00lryguy
Use can check this for email Activation in Authlogic http://github.com/matthooks/authlogic-activation-tutorial/blob/b9bca1d5529754c1ea7361bfd92e228f25f369bc/01 , Good luck !
YetAnotherCoder