ちなみに

火曜日の空は僕を押しつぶした。

2014-01-27から1日間の記事一覧

Bundler でグローバルに入れてしまった Gem を一気に消す

$ bundle uninstall --all みたいなことは出来ないので自力でやる。 $ bundle list | grep -v Gems | ruby -ne 'system("gem uninstall -x %s -v \"%s\"" % $_.match(/\*\s+(.+)\s+\((.+)\)/)[1, 2])' bundle list で一覧を取得して、grep で不要な行を消す…