Hemanth
Hemanth

Reputation: 5145

Which authentication method is a better solution ? restful or authlogic?

I'm building a Rails 3 web application and i wanna choose between restful authentication and authlogic method. Among restful authentication and Authlogic, which one is better, based on the foolproof security , customisable and hackproof ?

Upvotes: 0

Views: 152

Answers (3)

ndrix
ndrix

Reputation: 1241

As the others said, restful authentication is no longer being maintained. I'd suggest authlogic as it also packs several options to expand (OAuth, etc), or check our Devise.

Upvotes: 0

Dan McNevin
Dan McNevin

Reputation: 22336

You might want to check out Devise, especially with a Rails 3 application.

Upvotes: 3

shingara
shingara

Reputation: 46914

restfull_authentification is anymore Rails 3 compatible and not really maintain. So I advice you to use authlogic if you want choose between this 2 solutions.

Upvotes: 0

Related Questions