diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-15 01:42:14 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-15 01:42:21 +0200 |
commit | 28dc8a679fe51f28b19f7304f5e51892cd1918bc (patch) | |
tree | a4dd81e2a91185adebc51ddf83b5907437a69551 /%HOME% | |
parent | systemd: remove ssh-agent service (diff) | |
download | linux-home-28dc8a679fe51f28b19f7304f5e51892cd1918bc.tar.gz linux-home-28dc8a679fe51f28b19f7304f5e51892cd1918bc.zip |
.profile: remove chruby configuration
Switched to rbenv completely a long time ago.
Diffstat (limited to '%HOME%')
-rw-r--r-- | %HOME%/.profile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/%HOME%/.profile b/%HOME%/.profile index 250653c..51ca2c2 100644 --- a/%HOME%/.profile +++ b/%HOME%/.profile @@ -65,18 +65,9 @@ ruby_setup() { && path_export "$bin_dir" } -# Deprecated in favour of using chruby/RVM/etc. for Ruby management. +# Deprecated in favour of using rbenv for Ruby management. #ruby_setup -chruby_setup() { - local install_prefix="$HOME/.local" - local share_dir="$install_prefix/share/chruby" - [ -r "$share_dir/chruby.sh" ] && . "$share_dir/chruby.sh" - [ -r "$share_dir/auto.sh" ] && . "$share_dir/auto.sh" -} - -chruby_setup - rbenv_setup() { local rbenv_init |