January 16, 2015

Error installing debugger gem on ubuntu

I recently encountered error while bundle install. The issue was with debugger gem. Following is the error I was getting No source for ruby-1.9.3-p484 provided with debugger-ruby_core_source gem. extconf.rb failed After searching Google for answer, I found that this gem […]
May 15, 2011

Install RubyGems from Source

If you want to install some previous version of RubyGem or for what ever reason, want to install RubyGem from source, perform following steps Login to your server using putty Go to RubyForge and copy the URL of RubyGem of […]
May 15, 2011

How to remove/uninstall RubyGem from your system

If you installed rubygem with some sore of package management system, it probably provides for an uninstall capability. If not, here is one way to remove it. Find out where ruby installs its libraries. If you don’t know where your […]
May 15, 2011

How to Freeze Gems with recent versions of Rails

If you want to freeze the gems under vendor/gems, just run the following command in your application directory   rake gems:unpack  
April 10, 2011

Remove/Uninstall all gems

gem list | cut -d" " -f1 | xargs gem uninstall -aIx   Source: http://geekystuff.net/2009/1/14/remove-all-ruby-gems
Remove/Uninstall all gems
This website uses cookies to provide necessary website functionality, improve your experience and analyze our traffic. By using our website, you agree to our Privacy Policy and our cookies usage.
READ MORE