adding gem command

waldyrious/alt-syntax
Ankit Goyal 2014-03-01 02:41:02 -06:00
parent 1701905cfa
commit 26cc64127d
1 changed files with 23 additions and 0 deletions

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