Uninstall Rails 3 with dependencies?
Posted
by Trevor Burnham
on Stack Overflow
See other posts from Stack Overflow
or by Trevor Burnham
Published on 2010-06-08T21:25:52Z
Indexed on
2010/06/08
21:32 UTC
Read the original article
Hit count: 242
rubygems
|ruby-on-rails3
I like that Rails 3 is so easy to install: gem install rails --pre
, and all of the dependencies are automatically installed for you. But, what about uninstalling it? If I just do gem uninstall rails
, I still have
actionmailer (3.0.0.beta3)
actionpack (3.0.0.beta3)
activemodel (3.0.0.beta3)
activerecord (3.0.0.beta3)
activeresource (3.0.0.beta3)
activesupport (3.0.0.beta3)
which I want to get rid of. What's the easiest way to do so?
© Stack Overflow or respective owner