0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

add alias descriptions

This commit is contained in:
Marc Cornellà 2018-10-04 23:13:16 +02:00 committed by GitHub
parent 8d3cafca3e
commit 6c721e6f95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,11 +7,11 @@ To use it, add `gem` to the plugins array in your zshrc file:
```zsh
plugins=(... gem)
```
## Aliases
| Alias | Command |
|-------|-----------------------|
| gemb | `gem build *.gemspec` |
| gemp | `gem push *.gem` |
| gemy | `gem yank $1 -v $2` |
| Alias | Command | Description |
|----------------------|-------------------------------|--------------------------------------------|
| gemb | `gem build *.gemspec` | Build a gem from a gemspec |
| gemp | `gem push *.gem` | Push a gem up to the gem server |
| gemy [gem] [version] | `gem yank [gem] -v [version]` | Remove a pushed gem version from the index |