LoginSignup
136

More than 5 years have passed since last update.

posted at

updated at

インストールされている gem を全て削除する。

  1. gem list でリストを表示し、
  2. cut -d" " -f1 で名前を抽出し、
  3. それを gem uninstall に投げる。

を下記で実行できる。

gem list | cut -d" " -f1 | xargs gem uninstall -aIx

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
What you can do with signing up
136