Reputation: 333
Some gems ("sup" for example) install files not only in gem environment gemdir
, but also in other places - like /usr/local/bin.
How can I list all files that belong to given gem?
Upvotes: 18
Views: 9497
Reputation: 40333
What you're looking for is:
gem contents gem_name_here
Upvotes: 27