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

后端 未结 15 1144
生来不讨喜
生来不讨喜 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:29

    bundle exec gem which gem_name
    

    Is probably what you can use:

    $› bundle exec gem which rails
    /Users/xxxx/.rvm/gems/ruby-2.1.2@gemset/gems/railties-4.1.7/lib/rails.rb
    

提交回复
热议问题