3
1

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.

UbuntuにRubyMineをインストールした話

Last updated at Posted at 2018-02-17

Rubyのプログラムを書くためにIDEを導入することにしました。JetBrain製のRubyMineをUbuntuにインストールした時のメモです。

RubyMineのインストール

Ubuntuの場合、インストールは超簡単です。

sudo snap install rubymine --classic

RubyMineのデバッガを使えるようにする

RubyMineのデバッガを使うためのgemをインストールします。
RubyMineで作ったプロジェクトのディレクトリに移動してGemfileを作成します。
(以下はhelloworldプロジェクトを作成済みの場合の例)

cd ~/RubymineProjects/helloworld
bundle init

作成されたGemfileに以下の行を追加します。

gem 'ruby-debug-ide', require: false
gem 'debase', require: false

以下のコマンドでプロジェクトのディレクトリ配下にgemをインストールします。

bundle install --path vendor/bundle

プロジェクトのディレクトリの下にvendor/bundleディレクトリが自動で作られ、そこにgemがインストールされました。
これでRubyMineのデバッガを使うことができます。

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?