When I go with gem list
from my app folder, the terminal displays the list of all gems installed on my local machine. I want instead to see the project related gems.
Asked
Active
Viewed 4,468 times
5

Alex Nikolsky
- 2,087
- 6
- 21
- 36
-
1http://bundler.io/v1.10/commands.html – Arup Rakshit Sep 09 '15 at 07:35
2 Answers
9
Use
bundle list
to show project related gems
To see some gems version, you can chain comands and use grep
exp.
bundle list | grep rails
will list all gems that containt word rails
, such as rails
, jquery-rails
, ...

Nermin
- 6,118
- 13
- 23