Do I need to install Bundler manually on my server

2019-07-19 04:24发布

The title pretty much says it all.

I've just set up my web server with Ruby 1.9.2. It is a clean install -- no gems have been installed yet. Additionally, I've just configured Capistrano for my Rails application.

When I run cap deploy, it fails with the following error message:

*** [err :: bogusip.com] bash: bundle: command not found

Given that all I've done is install Ruby 1.9.2 onto my server, Bundler does not exist at this point. Is Capistrano supposed to install the Bundler gem for me or am I supposed to do that myself?

1条回答
贼婆χ
2楼-- · 2019-07-19 04:43

Yes.

Bundler is not included with ruby by default, it is included by rails. This will be why you have never installed it manually.

查看更多
登录 后发表回答