fv17の日記

Webエンジニアの備忘用ブログです。主にWeb界隈の技術に関して書いています。

RubyMine - No Ruby interpreter configured for the projectの解決方法

稀にエラーとなり、外部ライブラリが見えなくなる。

解決方法

  • RubyMineを閉じる
  • .idea/ フォルダーを削除する
  • 再度RubyMineで該当のプロジェクトを開く

git管理している場合の .idea/ 削除方法

git statusでUntracked filesに

.idea/

と出てきたら下記コマンドで削除できる

git clean -fd .idea/