web-dev-qa-db-ja.com

バンドルの更新:env:Ruby_executable_hooks:そのようなファイルまたはディレクトリはありません

更新されましたrubygems-bundler 1.2.2から1.3.

これが問題であるかどうかは正確にはわかりませんが、次のエラーが発生します。

$ bundle update
env: Ruby_executable_hooks: No such file or directory
$ bundle install
env: Ruby_executable_hooks: No such file or directory
10
Meltemi

ここでバグを開いてください: https://github.com/mpapis/executable-hooks/issues

一時的な修正として:

rvm @global do gem regenerate_binstubs
gem regenerate_binstubs

アップデート1:

https://github.com/mpapis/executable-hooks/issues/6 バージョン1.2.1executable-hooksの修正としてリリースされました-問題を修正する必要があります。

アップデート2:

次の問題 https://github.com/mpapis/executable-hooks/issues/7https://github.com/mpapis/executable-hooks/issues/81.2.3のバージョンexecutable-hooksでの最終修正

23
mpapis

Terminalで次のコマンドを実行して、executable-hooksを最新バージョンに更新し、問題を修正します。

Sudo gem install --user-install executable-hooks

6
Yas T.

同じ問題が発生しましたが、rubygems-bundlerではなくbundlerがあり、gemregenerate_binstubsを認識しません。

rvm all-gemsets do gem update bundlerバンドラー1.7.11をインストールし、修正してくれました。

3
PJSCopeland