Re: [Rails] Re: uninstall dependencies along with the gem

2013-06-23 Thread Norbert Melzer
Also there are other dangers. Let's assume an RSS-Feed-Gem wich depends on Nokogiri. Also you have a rails app which depends on Nokogiri. Now you remove that RSS-Gem and your App suddenly stops working. Ok, that is as easy as bundle command but creates unnecessary traffic and consumes time. Am

Re: [Rails] Re: uninstall dependencies along with the gem

2013-06-23 Thread Jordon Bedwell
On Sun, Jun 23, 2013 at 4:39 AM, Norbert Melzer timmel...@gmail.com wrote: Also there are other dangers. Let's assume an RSS-Feed-Gem wich depends on Nokogiri. Also you have a rails app which depends on Nokogiri. Now you remove that RSS-Gem and your App suddenly stops working. Ok, that is as

[Rails] Re: uninstall dependencies along with the gem

2013-06-23 Thread Ivan Histand
On Saturday, June 22, 2013 6:41:16 PM UTC-5, John Merlino wrote: How do I uninstall spree and all of the gems that were installed along with it? Assuming you're working in bash: for gem in $(gem list spree --no-versions); do echo working on $gem gem uninstall $gem done gem uninstall

Re: [Rails] Re: uninstall dependencies along with the gem

2013-06-23 Thread Norbert Melzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Am Sun, 23 Jun 2013 06:21:37 -0500 schrieb Jordon Bedwell envyge...@gmail.com: On Sun, Jun 23, 2013 at 4:39 AM, Norbert Melzer timmel...@gmail.com wrote: Also there are other dangers. Let's assume an RSS-Feed-Gem wich depends on Nokogiri.

Re: [Rails] Re: uninstall dependencies along with the gem

2013-06-23 Thread Norbert Melzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Am Sun, 23 Jun 2013 06:21:37 -0500 schrieb Jordon Bedwell envyge...@gmail.com: On Sun, Jun 23, 2013 at 4:39 AM, Norbert Melzer timmel...@gmail.com wrote: Also there are other dangers. Let's assume an RSS-Feed-Gem wich depends on Nokogiri.

[Rails] Re: uninstall dependencies along with the gem

2013-06-22 Thread Joel Pearson
I can see it being quite dangerous to uninstall all dependancies of a given gem. In theory it could be dependant on gems which have become part of the core library in more recent Ruby versions, for example. However if you mean you want to keep only the latest version of each gem, there's the