Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does devise make sense for a Rails-based web service?

For those with experience, I'm looking to build some web services with Rails. These services will not served HTML content to a web browser and work strictly with XML and JSON only. Since Devise is a full blown MVC module, does it make sense for me? I need solid authentication with custom routes and access to Facebook Connect (OmniAuth looks good for this). I just don't need all of the additional work it's doing in views/layouts.

Is it still a good idea to try it out?

like image 670
randombits Avatar asked Nov 13 '22 21:11

randombits


1 Answers

Yes, devise is worth it because it also handles all of the authentication you still need. The view-helpers are just one (very small) part of that functionality.

like image 81
Taryn East Avatar answered Dec 24 '22 10:12

Taryn East