diff options
author | 2025-02-13 14:13:49 +0530 | |
---|---|---|
committer | 2025-02-13 14:13:49 +0530 | |
commit | 8a2e1006b3b272126332aa064f3ad95387129544 (patch) | |
tree | 944c80ac612a65980d94a54ba11b6c7102037ecf /.config/zsh/oh-my-zsh/plugins/ruby | |
parent | dcbb16d8b08ff5956abef5e6478b59df2e93ad35 (diff) | |
download | dotfiles-master.tar.gz dotfiles-master.tar.bz2 dotfiles-master.zip |
Diffstat (limited to '.config/zsh/oh-my-zsh/plugins/ruby')
-rw-r--r-- | .config/zsh/oh-my-zsh/plugins/ruby/README.md | 33 | ||||
-rw-r--r-- | .config/zsh/oh-my-zsh/plugins/ruby/ruby.plugin.zsh | 26 |
2 files changed, 59 insertions, 0 deletions
diff --git a/.config/zsh/oh-my-zsh/plugins/ruby/README.md b/.config/zsh/oh-my-zsh/plugins/ruby/README.md new file mode 100644 index 0000000..59d839c --- /dev/null +++ b/.config/zsh/oh-my-zsh/plugins/ruby/README.md @@ -0,0 +1,33 @@ +# Ruby plugin + +This plugin adds aliases for common commands used in dealing with [Ruby](https://www.ruby-lang.org/en/) and [gem packages](https://rubygems.org/). + +To use it, add `ruby` to the plugins array in your zshrc file: + +```zsh +plugins=(... ruby) +``` + +## Aliases + +| Alias | Command | Description | +| ------- | -------------------------------------- | ---------------------------------------------------- | +| rb | `ruby` | The Ruby command | +| sgem | `sudo gem` | Run sudo gem on the system ruby, not the active ruby | +| rfind | `find . -name "*.rb" \| xargs grep -n` | Find ruby file | +| rrun | `ruby -e` | Execute some code: E.g: `rrun "puts 'Hello world!'"` | +| rserver | `ruby -e httpd . -p 8080` | Start HTTP Webrick serving local directory/files | +| gein | `gem install` | Install a gem into the local repository | +| geun | `gem uninstall` | Uninstall gems from the local repository | +| geli | `gem list` | Display gems installed locally | +| gei | `gem info` | Show information for the given gem | +| geiall | `gem info --all` | Display all gem versions | +| geca | `gem cert --add` | Add a trusted certificate | +| gecr | `gem cert --remove` | Remove a trusted certificate | +| gecb | `gem cert --build` | Build private key and self-signed certificate | +| geclup | `gem cleanup -n` | Do not uninstall gem | +| gegi | `gem generate_index` | Generate index file for gem server | +| geh | `gem help` | Provide additional help | +| gel | `gem lock` | Generate a lockdown list of gems | +| geo | `gem open` | Open gem source in default editor | +| geoe | `gem open -e` | Open gem sources in preferred editor | diff --git a/.config/zsh/oh-my-zsh/plugins/ruby/ruby.plugin.zsh b/.config/zsh/oh-my-zsh/plugins/ruby/ruby.plugin.zsh new file mode 100644 index 0000000..4085121 --- /dev/null +++ b/.config/zsh/oh-my-zsh/plugins/ruby/ruby.plugin.zsh @@ -0,0 +1,26 @@ +# Run sudo gem on the system ruby, not the active ruby +alias sgem='sudo gem' + +# Find ruby file +alias rfind='find . -name "*.rb" | xargs grep -n' + +# Shorthand Ruby +alias rb="ruby" + +# Gem Command Shorthands +alias gein="gem install" +alias geun="gem uninstall" +alias geli="gem list" +alias gei="gem info" +alias geiall="gem info --all" +alias geca="gem cert --add" +alias gecr="gem cert --remove" +alias gecb="gem cert --build" +alias geclup="gem cleanup -n" +alias gegi="gem generate_index" +alias geh="gem help" +alias gel="gem lock" +alias geo="gem open" +alias geoe="gem open -e" +alias rrun="ruby -e" +alias rserver="ruby -e httpd . -p 8080" # requires webrick |