How to view a list of currently installed gem versions?

Hey all, I am new to Rails so sorry if this is such an elementary
question…

From a command line, how can I list out all of my currently installed
gems and their version numbers? I am pretty sure that I have a few
that need to updated to the latest versions, but I am unsure of how to
know which versions that I currently have installed!

Thanks!

CPerry wrote:

From a command line, how can I list out all of my currently installed
gems and their version numbers?

gem list

HTH,
Bill

Wow, who have thought it was that easy? I think I tried every
combination except that one!

Thanks Bill.

–Cory

CPerry wrote:

Wow, who have thought it was that easy? I think I tried every
combination except that one!

Thanks Bill.

–Cory

Then maybe you should also try this one:

gem help commands

:slight_smile:

Phillip