summaryrefslogtreecommitdiffstatshomepage
path: root/sh/.config/profile.d/20-ruby.sh
blob: 1336853c010ec3cbb2d925421b430d00969cac6c (plain)
1
2
3
4
5
6
#!/bin/sh

if command -v ruby >/dev/null && command -v gem >/dev/null; then
	GEM_USER_DIR="$(ruby -r rubygems -e 'puts Gem.user_dir')"
	export PATH="$PATH:$GEM_USER_DIR"
fi