Ruby 2.0.0 - Remove the debugger gem installation

421 Views Asked by At

I am new to Ruby. I am using Ruby 2.0.0. I want to run an existing project in Ruby 2.0.0. When I try to run "Bundle install", it is trying to install the gem debugger, even I didn't included the debugger gem in the gem file.

How can I remove the debugger gem from installing?

1

There are 1 best solutions below

0
On

You can run gem dependency to show all gems from current Gemfile with their dependencies.

Its highly likely that debugger is required by some other gem in your case.