E.E.33
E.E.33

Reputation: 2011

When I run 'gem list' from within any of my projects I get the following output

user@user:~/Workspace/fq$ gem list --local

*** LOCAL GEMS ***

bundler (1.0.21)

Why isn't it showing all the gems I have installed?

Upvotes: 3

Views: 56

Answers (1)

Chamnap
Chamnap

Reputation: 4766

Are you using rvm? If so, those gems might be installed under different gemsets.

  • Run rvm gemset list to display all gemsets.
  • Run rvm gemset use #{gemset_name} to use this gemset_name, then run gem list again.

Upvotes: 4

Related Questions