I have installed a gem on my rails application (devise). After I installed the gem I realized that I don't need it.

I want to remove the gem, his dependencies and the files it created on my application. I other words, I want to restore the system to what it used to be before the gem.

How can I do this ? (I'm using ruby on rails 3)

Thanks,

Oded

link|improve this question

69% accept rate
feedback

5 Answers

up vote 0 down vote accepted

Devise uses some generators to generate views and stuff it needs into your application. If you have run this generator, you can easily undo it with

rails destroy <name_of_generator>

The uninstallation of the gem works as described in the other posts.

link|improve this answer
feedback

If you're using Rails 3, removing it from the Gemfile and running bundle install will suffice.

If you're using Rails 2, hopefully you've put the declaration in config/environment.rb. If so, removing it from there and running rake gems:install should do the trick.

link|improve this answer
Will this also remove the files the gem created? – Oded Harth Mar 9 '11 at 18:29
It typically doesn't add any files unless you explicitly specify, but it may modify some of the existing files, like routes.rb. If you want to roll back those modifications, you can revert through the source control as @harald said. – Srdjan Pejic Mar 9 '11 at 18:33
feedback

What about gem uninstall <gem-name>? It works for me.

link|improve this answer
feedback

You are using some sort of revision control, right? Then it should be quite simple to restore to the commit before you added the gem, or revert the one where you added it if you have several revisions after that you wish to keep.

link|improve this answer
I am using git. Is there a way to restore my application with git? – Oded Harth Mar 9 '11 at 18:38
Yep, look up 'git revert' or 'git reset' depending on your situation, one of those should probably help you. – harald Mar 9 '11 at 21:09
feedback

How about something like:

gem dependency devise --pipe | cut -d \  -f 1 | xargs gem uninstall -a

(this assumes that you're not using bundler - but I guess you're not since removing from your bundle gemspec would solve the problem)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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