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.

bundle install時にインストール先のpathを変える

Posted at

bundle install時にインストール先のpathを変える

(anyenv, rbenv利用)

deviseインストール。

ログを見ると、.anyenv/envs/rbenv/以下へdeviseがインストールされ、実行されている。

スクリーンショット 2019-10-02 14.52.07.png

bundle install時にpathを指定しないと、rbenvを利用している場合は.anyenv/envs/rbenv/以下にインストールされる。

参考
https://qiita.com/chro96/items/35f67767d0b511939fea

deviseのファイルを編集するのに.anyenv/envs/rbenv/以下だとやりづらいため、プロジェクト以下にインストールしたい。

そのため、bundle install時にpathを指定する。

-j4は bundle install を並列処理するコマンド。
bundle install が早くなる。
https://qiita.com/camelmasa/items/5ca27ab398f105f86c76

$ bundle install -j4 --path .bundle

これでプロジェクト内に、.bundleというディレクトリが作成され、gemがインストールされ、.bundle/以下にあるファイルで実行されることを確認。

スクリーンショット 2019-10-02 14.52.39.png
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?