1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

chrubyの使い方

Last updated at Posted at 2022-11-09

chrubyのインストール

ghq get postmodern/chruby

その後

source "${HOME}/src/github.com/postmodern/chruby/share/chruby/chruby.sh"
source "${HOME}/src/github.com/postmodern/chruby/share/chruby/auto.sh"

を ~/.zshrc.local とかに追加 (2つ目は.ruby-version用)

ruby-installのインストール

ghq get postmodern/ruby-install

その後

export PATH="${PATH}:${HOME}/src/github.com/postmodern/ruby-install/bin"

を ~/.zshrc.local とかに追加

Rubyのインストール

ruby-install 3.1.2

Rubyの一覧

chruby
  • インストール後、シェルを初期化し直さないとリストは更新されない。
  • chruby system でsystem rubyを使えるが、この一覧には出ない。

シェル上でRuby有効化 (rbenv shell)

chruby 3.1.2

グローバルにRuby有効化 (rbenv global)

以下のやり方は auto.sh が必要。

echo 3.1.2 > ~/.ruby-version

これはHOME外にいると動作しないので、~/.zshrc.local で chrubyを叩いてしまう方がよさそう。

chruby 3.1.2

困り所メモ

  • インストール後、シェルを初期化し直さないとリストは更新されないのは直らないのか?
  • configureをいじりたい時はどうするのか?
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?