How to find out which rails version an existing rails application is built on?

rake gems will print out what gems, dependencies, and versions are installed, frozen, etc.

If you are using bundler than you can use bundle show to list all the gems that your app is using.

Leave a Comment