6
5

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.

RubyMineでGuardを動かしたい

Posted at

RubyMine上でGuardを動かしながら快適なテストライフを送りたいと思ったのですが、設定の方法がわからなかったので調べたところstackoverflowに載っていたのでメモ

参考:Is it impossible to use Guard with RubyMine?

設定方法

  1. まず、menuからRubyMine > Rreferencesを選択し、検索ボックスにsaveと入力します。その後、リストからGeneralを選択します。
    スクリーンショット 2014-05-12 18.19.38.png
    そして、save files on frame deactivationのチェックを外します。これで、auto saveが解除されました。
  2. あとはTools > Open Terminalでterminalを開いて
    スクリーンショット 2014-05-13 10.27.21.png
    guardを手打ちすればRubyMine内でguardが動いてる(ふう)になります。
    スクリーンショット 2014-05-13 10.30.36.png

参考にしたスレッドではIRB consoleに設定をするようになってますが、guardがbashスクリプトだったのでterminalで実行することにしました。

他の方法としてはbash pluginを入れてあげればRunから実行できるようになります。ただ、こちらだと色がつかなかったり表示がちょっとおかしかったりするので、terminalでの実行におちついてます。

6
5
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
6
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?