I have a rails 3.0.5 app and I'm setting up capistrano to use a recipe.

in my config directory I have a file named "database_capistrano.rb" and in my deploy.rb, also in config directory, I have the following line, just in the beginning:

require 'database_capistrano'

But I'm getting:

`require': no such file to load -- capistrano_database (LoadError)

Also try with:

require 'database_capistrano.rb'

And don't work...

How, in Rails 3.0.5, include files in capistrano deploy.rb??

link|improve this question

50% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Ok, I manage to find out how this should be done.

Just copied the file to a new sub-directory "deploy", for organization only, and at the beginning of my deploy.rb, added:

$LOAD_PATH.unshift File.join(File.dirname(__FILE__), 'deploy')

Then, in deploy.rb, just used:

require 'database_capistrano'
link|improve this answer
Thanks, also had this problem and this solved it. Wish I understood the problem in the first place=) – DavveK Aug 12 '11 at 21:52
Capistrano recipes want to be required. You have to add the location that you're storing the recipes in to ruby's $LOAD_PATH variable in order to get require to find it. – BeepDog Aug 22 '11 at 0:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.