Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove bundler on a mac

Tags:

ruby

bundler

I am getting a whole bunch of these errors:

bundle exec rake db:migrate
/Users/robpaulo/gems/gems/bcrypt-ruby-3.0.1/lib/bcrypt_ext.bundle: [BUG] Segmentation fault
ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin10.8.0]

On all my versions of Ruby and I want to see if either my gems are messed or if I have to re-install rbenv. I am running Snow Leopard is there a way to uninstall bundler so that I can re-install it I tried the Bundler website and calling bundle -h in the console, no help there.

Then I tried bundle implode to which bundle laughed maniacally. I also tried bundle uninstall which didn't work.

like image 920
TheLegend Avatar asked Apr 30 '13 12:04

TheLegend


People also ask

How do I uninstall accfinderbundleloader from my Mac?

Launch PowerMyMac, go to App Uninstaller and choose SCAN. In the scan result list, which can be seen on the left side of the page, look for ACCFinderBundleLoader.app or search for ACCFinderBundleLoader directly in the search box in the upper right corner.

How do I uninstall icbundler?

If you are looking for a way to remove ICBundler you can try this: Click on the Start button in the bottom left corner of your Windows OS. Go to Control Panel -> Programs and Features -> Uninstall a Program. Search for ICBundler and any other unfamiliar programs.

Why am I getting a Gemfile error when installing a bundle?

If a gem is already absent from the Gemfile, and error is raised. Runs bundle install after the given gems have been removed from the Gemfile, which ensures that both the lockfile and the installed gems on disk are also updated to remove the given gem (s).

What is icbundler and how does it work?

Another potential usage of ICBundler includes acting as a backdoor for other viruses. Most commonly, Trojans can be used as an aid for ransomware. And ransomware, in turn, are also extremely dangerous threats that could end up costing you dearly, depending on the type of information you store on your machine.


1 Answers

Bundler is just a regular gem, so you'd do:

gem uninstall bundler

If you want to removal all gems so you're back at a clean slate, just do:

gem list | cut -d" " -f1 | xargs gem uninstall -aIx
like image 147
Dave S. Avatar answered Oct 21 '22 04:10

Dave S.