]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/gem/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / gem / README.md
1 # Gem plugin
2
3 This plugin adds completions and aliases for [Gem](https://rubygems.org/). The completions include the common `gem` subcommands as well as the installed gems in the current directory.
4
5 To use it, add `gem` to the plugins array in your zshrc file:
6
7 ```zsh
8 plugins=(... gem)
9 ```
10
11 ## Aliases
12
13 | Alias                | Command                       | Description                                |
14 |----------------------|-------------------------------|--------------------------------------------|
15 | gemb                 | `gem build *.gemspec`         | Build a gem from a gemspec                 |
16 | gemp                 | `gem push *.gem`              | Push a gem up to the gem server            |
17 | gemy [gem] [version] | `gem yank [gem] -v [version]` | Remove a pushed gem version from the index |