feat(plugin): add ruby

master
George Rawlinson 2021-08-22 19:14:23 +12:00
parent 9cf5287c49
commit 9f3b8c5de8
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 11 additions and 0 deletions

11
plugins/ruby Normal file
View File

@ -0,0 +1,11 @@
#
# ruby
#
# Add rubygem binary directory to PATH
if command -v ruby &> /dev/null; then
path+=("$(ruby -e "puts Gem.user_dir")/bin")
export PATH
fi
# vim: ft=zsh expandtab tabstop=2 shiftwidth=2