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:
parent
1701905cfa
commit
26cc64127d
1 changed files with 23 additions and 0 deletions
23
common/gem.md
Normal file
23
common/gem.md
Normal 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}}`
|
Loading…
Reference in a new issue