2
2

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で環境変数設定が面倒くさい時の方法

Posted at

最近お試しでRubyMineを使い始めている。(ただ、SublimeText3から完全に移行するまでに至っていない)
RubyMineは.bashrcなどに書いた環境変数を読み込んでくれない。

Googleで検索してみても、プラグインを使ったり、plistを使って追加する方法だったりと面倒くさい。あまりスマートな方法ではないのだが、ymlファイルに環境変数を書いちゃえばいいんじゃね?ということで今は下記でやってる。

# config/application.rb
ENV.update YAML.load(File.read(File.expand_path('../application.yml', __FILE__)))

を追加。ついでに.gitignoreに /config/application.yml も追記。

# config/application.yml
FOO: 'BAR'

もっと簡単でスマートな方法はないだろうか・・・

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?