151
146

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 5 years have passed since last update.

[rbenv]コマンド備忘録

Last updated at Posted at 2014-09-01

##rbenvの使い方

・バージョンを確認

$rbenv -v

・現在利用しているrubyのバージョンを確認

$rbenv version

・インストール済みで利用可能なrubyのバージョンを表示

$rbenv versions

・デフォルトで利用するバージョンを指定

$rbenv global バージョン

・カレントディレクトリで利用したいバージョンを指定

$rbenv local バージョン

・インストール可能なバージョン一覧を表示

$rbenv install -l

・指定バージョンをインストール

$rbenv install バージョン

##rubyバージョン切り替え後の環境確認
・利用中のrubyに対応するgem内のコマンドラインツールを利用可能にする

$rbenv rehash

・利用しているrubyにおけるgemのインストール先を表示

$gem env

・Bundlerを利用しているときのgemのインストール先を表示

$bundle exec gem env

##チップス
デフォルトgem以外のgemを削除したい場合下記を実行
参考:http://stackoverflow.com/questions/15100496/uninstalling-all-gems-ruby-2-0-0

sh
for i in `gem list --no-versions`; do gem uninstall -aIx $i; done
151
146
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
151
146

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?