Capistrano and rails edge

hi,
I’m trying to capitranize my app (cap --apply-to app iEngine) but all
I got is a strange error:

/i386/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require’: no such file to load – app/config/environment
(LoadError)

what capistrano is talking about?

thanks.

Claudio P.  wrote:

hi,
I’m trying to capitranize my app (cap --apply-to app iEngine) but all
I got is a strange error:

/i386/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require’: no such file to load – app/config/environment
(LoadError)

what capistrano is talking about?

thanks.

It’s looking for a directory called ‘app’ because you have the copmmand
line wrong :slight_smile:

It’s just
cap --apply-to iEngine

Or, I usually cd into the RAILS_ROOT and just
cap --apply-to .

A.