How to tell which version of a gem a rails app is using

后端 未结 15 1132
生来不讨喜
生来不讨喜 2020-12-13 11:32

I\'m investigating a rails app - the prod server has two version of a specific gem installed, how can I tell which version the prod app is using?

15条回答
  •  自闭症患者
    2020-12-13 12:23

    try this one for local gem :

    gem list gemname | grep -P '(^|\s)\Kgemname(?=\s|$)'
    

    If you use bundle:

    bundle exec gem list gemname | grep -P '(^|\s)\Kgemname(?=\s|$)'
    

提交回复
热议问题