Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have installed Devise and now want to remove it, including all the files it has generated. How do I do that?

share|improve this question
I believe you need to run a generator for Devise to create any files in your directory to begin with. Hence you should be able to run e.g. rails destroy devise:views . Have you tried that already? – polarblau Jul 26 '11 at 16:58

2 Answers

up vote 21 down vote accepted

I'm looking at solving the same problem today and since this is not answered, giving it a go =)

"Rails" Way: Systematic removal via MVC

Models

Devise generates a User model if you installed by default. Remove the lines under devise. This is how mine looks like.

devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

In attr_accessible, you may remove email, :password, password_confirmation and remember_me if you no longer need them.

Views

A default Devise install doesn't generate views in your app folder. If you generated overriding views for Devise, you may remove them by running rails destroy devise:views (Rails 3).

Generally, all the views are stored in app/views/devise.

Controllers

By default, Devise doesn't generate any controllers too. If you did any overrides, they are most likely known as registrations_controller. Search your project for controllers that inherit Devise::RegistrationsController class.

Also, if you followed Devise's wiki and monkey-ed around to add redirect methods etc, look out for methods such as after_sign_in_path_for, store_location etc that are for redirecting users.

Migrations

If you installed Devise via its generators, look out for a migration create_users and simply delete it if you don't need a user model anymore.

If you added fields to the User model and want to keep them (but not wanting Devise's columns), I suggest deleting the devise fields from the original create_users. When you do rake db:reset (warning: deletes all your existing data), the User table will not have Devise fields anymore.

t.database_authenticatable :null => false
t.recoverable  
t.rememberable
t.trackable

t.encryptable
t.confirmable
# t.lockable :lock_strategy => :failed_attempts, :unlock_strategy => :both
t.token_authenticatable


t.timestamps

If you're using Devise < 2.0, the migrations are done by helpers. Once you remove Devise from you gemfile, Rails will not understand the above code anymore and give you an error. For the exact columns, the below is a quick and dirty reference to the columns generated by Devise.

https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0-migration-schema-style

Initializers and Locale

Remove devise.rb in config/initializers and devise.en.yml in config/locales.

Routes

Remove any devise_for lines.

Gem File

Remove the line gem 'devise' from your gemfile.

share|improve this answer
Clear and well written, thank you! – Steve Lamb Apr 4 '12 at 17:31
Thanks for the compliment =) – daemonsy Apr 7 '12 at 6:49

In my case I had two models User and Admin and I am sticking with Devise, but I had a name collision issue with ActiveAdmin that requires me to remove the Admin model. But because there were so many references to Admin in devise, I had to take the steps below. I think it answers the original question above as well, though. I believe the correct way to do this is:

1.Find the devise migration for the user model and roll it back [IMPORTANT: IF you DON'T want to remove the user table associated with Devise, then SKIP THIS STEP]:

rake db:rollback VERSION=<insert the version number of the migration>

example: rake db:rollback VERSION:20110430031806

2.Run this command to remove Devise and associated files. rails destroy devise Admin (if Admin is the name of the model with user accounts).

This produces this output:

invoke  active_record
  remove    db/migrate/20110430031806_devise_create_admins.rb
  remove    app/models/admin.rb
  invoke    test_unit
  remove      test/unit/admin_test.rb
  remove      test/fixtures/admins.yml
   route  devise_for :admins

3.To completely remove Devise, you need to remove all references to it in your models, controllers and views. This is manual work. The answer above provides good details for finding this cruft, but was incomplete for my purposes. I hope this helps someone else.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.