bunlderのデフォルトオプション

1
bundle install --without production

とか毎回オプション設定がめんどくさい。
gemrcみたいなのないのかなーと思って探してみたら答えはここにあった。
http://bundler.io/bundle_config.html

bundle config –globalでglobalな設定を見れる。
bundle config –global キー 値で設定できる。

よって

1
bundle config --global without production

ってやったら、出来た。

確認してみる

1
2
3
4
5
bundle config
Settings are listed in order of priority. The top value will be used.

without
Set for the current user (~/.bundle/config): "production"

ファイルも見てみる

1
2
3
vim ~/.bundle/config
---
BUNDLE_WITHOUT: production

できましたー。

Comments