1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 13:06:00 +02:00

Merge pull request #141 from goyalankit/master

adding gem command
This commit is contained in:
Romain Prieto 2014-03-02 18:12:44 +11:00
commit be82a55510

23
common/gem.md Normal file
View file

@ -0,0 +1,23 @@
#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 -v=0.0.15`
- Update a gem
`gem update {{gemname}}`
- List all gems
`gem list`
- Uninstall a gem
`gem uninstall {{gemname}}`