1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 05:17:58 +01:00
tldr/pages/common/gem.md
amine hajyoussef 7d60083f20 fix markup
2015-12-31 13:28:12 +01:00

336 B

gem

Interact with the package manager for the Ruby programming language.

  • 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}}