User314159
User314159

Reputation: 8065

which gem doesn't show after gem install

I typed

gem install some_gem

and I even saw the confirmation message

1 gem installed!

But when I type

which some_gem

I see a blank line. What's going on?

Upvotes: 0

Views: 37

Answers (1)

firien
firien

Reputation: 1568

if a gem lacks an executable then which some_gem should return nothing. try

gem query --name some_gem

or

gem list

Upvotes: 1

Related Questions