feat(plugin): add ruby

This commit is contained in:
George Rawlinson 2021-08-22 19:14:23 +12:00
parent 9cf5287c49
commit 9f3b8c5de8
Signed by: grawlinson
GPG key ID: E0959FEA8B550539

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