2024-05-02 18:09:34 -07:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
if command -v rvm &>/dev/null
|
2024-10-06 17:15:48 -07:00
|
|
|
if status --is-interactive
|
|
|
|
rvm use 3 &>/dev/null
|
|
|
|
end
|
2024-05-02 18:09:34 -07:00
|
|
|
else if test -e /opt/homebrew/opt/ruby/bin/ruby
|
|
|
|
fish_add_path /opt/homebrew/opt/ruby/bin/
|
|
|
|
end
|