Reputation: 8065
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
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