5

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.

Alex Nikolsky
  • 2,087
  • 6
  • 21
  • 36

2 Answers2

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
1

bundle show is what you are looking for

Tim Kretschmer
  • 2,272
  • 1
  • 22
  • 35