Bundle install продолжает установку в ./runner - PullRequest
0 голосов
/ 13 января 2012

Не уверен, что здесь происходит, но в моем приложении на Rails 3 я набираю bundle install, и в конце if говорит Your bundle is complete! It was installed into ./runner.

Странно, потому что я понятия не имею, откуда идет бегун!

1 Ответ

1 голос
/ 13 января 2012

Если я правильно помню, если вы запустите что-то вроде bundle install ./runner, он запомнит путь ./runner.bundle install --system должно это исправить.Я думаю.

См. Справочную страницу :

--path=<path>
The location to install the gems in the bundle to.
This defaults to the gem home, which is the location
that gem install installs gems to. This means that, by
default, gems installed without a --path setting will
show up in gem list. This setting is a remembered option.

--system
Installs the gems in the bundle to the system location.
This overrides any previous remembered use of --path.
...