millisami
millisami

Reputation: 10151

where is the bundle:install command in capistrano deployment rails3.2 app?

I'm trying to deploy a rails 3.2 app using capistrano and rbenv on prod server.

Bundle is failing so I want to override the bundle:install callback hook but I couldn't find the method in the capistrano gem sorce.

Where/which file does this declared ?

Upvotes: 2

Views: 2916

Answers (1)

Akshay Rawat
Akshay Rawat

Reputation: 4784

Its actually in Bundler.

https://github.com/carlhuda/bundler/blob/master/lib/bundler/deployment.rb#L38

Given this, you can experiment around to figure out your problem.

Cheers!

Upvotes: 8

Related Questions