0
0

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をcmd.exeから「mine .」で起動できるようにする方法

Posted at

macos版のRubymineには、Toolsメニューからコマンドラインを追加するメニューがあったのですが、Windows版では無かったので自作してみました。

mine.cmdの作成

Rubymineの実行ファイルとおなじフォルダーに以下のファイルを作成します。
(私の環境の場合は、C:\Program Files\JetBrains\RubyMine 2018.3\bin でした)

mine.cmd
@echo off
"%~dp0\rubymine64.exe" %*

PATHを追加

環境変数を新規追加し、作成したコマンドラインにパスを通します。
image.png

動作確認

cmd.exeを起動して、以下の状態になれば準備完了です。

>where mine
C:\Program Files\JetBrains\RubyMine 2018.3\bin\mine.cmd

つかいかた

適当なgemを取得してきて、mine .すると、Rubymineがカレントディレクトリを開いてくれます。便利 :thumbsup:

>git clone https://github.com/axgle/a.git
Cloning into 'a'...
remote: Enumerating objects: 76, done.
remote: Total 76 (delta 0), reused 0 (delta 0), pack-reused 76
Unpacking objects: 100% (76/76), done.

>cd a

>mine .
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?