Top "Devise" questions

Devise is an authentication gem for Ruby-on-Rails.

Customizing Devise views in Rails

I'm using devise for user auth, but I have nice mockups for the signup, login, etc. pages. I've already done …

ruby-on-rails devise views
How do I set up email confirmation with Devise?

Is there a tutorial out there that explains how to set up Devise's signup confirmation email from scratch (in both …

ruby-on-rails devise actionmailer confirmation
Devise password reset from Rails console

While running an app how do you select a user by email address and then set the password manually within …

ruby-on-rails ruby ruby-on-rails-3 devise rails-console
How to manually create a new user and user session in Devise?

I have a form where I collect a lot of information in Rails. Part of this form is fields for …

ruby-on-rails ruby-on-rails-3 authlogic devise
Setting Devise Login to be root page

I am using the following code for my routes: devise_for :user, :as => '', :path_names => { :sign_in =&…

ruby-on-rails ruby-on-rails-3 devise
How do I remove the Devise route to sign up?

I'm using Devise in a Rails 3 app, but in this case, a user must be created by an existing user, …

ruby-on-rails-3 routing devise
Devise form within a different controller

I am using a devise gem for sign_in/sign_out procedures. I generated views files from devise, using rails …

ruby-on-rails ruby-on-rails-3 devise
Rails 5 ActionController::InvalidAuthenticityToken error

I have a rails application which I am planning to upgrade to rails 5. I am using devise(v4.2.0) along with …

ruby-on-rails ruby devise ruby-on-rails-5
How to verify a user's password in Devise

I'm having a problem matching user password using devise gem in rails. User password stored on my db which is …

ruby-on-rails devise
Devise update user without password

I want to update users attributes without password in devise. The case is like, if password and password confirmation fields …

ruby-on-rails devise