I have installed Devise and now want to remove it, including all the files it has generated. How do I do that?
|
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
In Views A default Devise install doesn't generate views in your Generally, all the views are stored in Controllers By default, Devise doesn't generate any controllers too. If you did any overrides, they are most likely known as Also, if you followed Devise's wiki and monkey-ed around to add redirect methods etc, look out for methods such as Migrations If you installed Devise via its generators, look out for a migration 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
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 Routes Remove any Gem File Remove the line |
|||||
|
|
|
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]:
example:
2.Run this command to remove Devise and associated files.
This produces this output:
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. |
|||
|
|
rails destroy devise:views. Have you tried that already? – polarblau Jul 26 '11 at 16:58