1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 09:38:01 +01:00

adding gem command

This commit is contained in:
Ankit Goyal 2014-03-01 02:41:02 -06:00
parent 1701905cfa
commit 26cc64127d

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