Reputation: 6862
My authentication system will be at the heart of my application and the revenue model for my business. I want a strong, but yet simple authentication option for Rails.
What are your suggestions?
Upvotes: 1
Views: 179
Reputation: 8250
Use facebook for websites to authenticate use. There is one one gem which lets you use facebook auth via devise (devise_facebook_connectable) https://github.com/grimen/devise_facebook_connectable
Upvotes: 0
Reputation: 3357
You have many different authentification options for Rails.
I personaly prefer Devise, it's really complete, with a lot of features and simple to use.
You can have a look at a Railscast :
http://railscasts.com/episodes/209-introducing-devise
Upvotes: 2