Ruby 2.0.0 - Remove the debugger gem installation

371 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 answers

0
shivam 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.