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?
Try using script/about. Your config/environment.rb also has information about it.
In your config/environment.rb you can specify which version of a particular gem the application should use. However if you have multiple versions of a gem installed on your machine and you do not specify the version, the latest version of that gem will be used by the application.