Finding out the current version of stuff on Heroku

by Trevor Turk

You can use the Herkou console to run system commands to get version info.

For example, to get the current version of Bundler:

heroku console %x{bundle -v}

…or the current version of ImageMagick:

heroku console %x{identify -version}
Advertisement