Devise is an authentication gem for Ruby-on-Rails.
I am trying to build a rails API for an iphone app. Devise works fine for logins through the web …
ruby-on-rails ruby authentication deviseI just installed Devise in my app, configured the views and everything. However, when I click the sign up button …
ruby-on-rails ruby-on-rails-3 deviseI think there is a problem with my user factory being built. I'm getting an error saying that the password …
ruby-on-rails ruby rspec devise factory-botI am working with Rails 5 I aded new field username in model User. class Users::RegistrationsController < Devise::RegistrationsController before_…
ruby-on-rails devise ruby-on-rails-5I have installed Devise and now want to remove it, including all the files it has generated. How do I …
ruby deviseI've followed this tutorial (http://railscasts.com/episodes/236-omniauth-part-2) for creating facebook login with OmniAuth and Devise and I get …
ruby-on-rails ruby devise rubygems omniauthI made authentication in my Rails 3 app fallowed by Tony's tutorial I don't want public registrations on my app, just …
ruby-on-rails-3 devise cancanAll the questions I've found are related for a successful login with the helper after_sign_in_path_for(resource) …
ruby-on-rails redirect login deviseThe newest version of Devise doesn't have :confirmable enabled by default. I already added the respective columns to the User …
ruby-on-rails-3 devise confirmationWhat's the best way to enable users to log in with their email address OR their username? I am using …
ruby-on-rails authentication devise