1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 17:24:56 +02:00
tldr/pages/common/gem.md
2019-06-07 22:58:59 +01:00

385 B

gem

Interact with the package manager for the Ruby programming language. More information: https://rubygems.org.

  • Install latest version of a gem:

gem install {{gemname}}

  • Install specific version of a gem:

gem install {{gemname}} -v {{1.0.0}}

  • Update a gem:

gem update {{gemname}}

  • List all gems:

gem list

  • Uninstall a gem:

gem uninstall {{gemname}}