When i try de deploy my rails application with the command cap deploy
it fails :
./config/deploy.rb:31:in `load': no such file to load -- deploy/assets (LoadError)
This is due to the line
load 'deploy/assets'
in my capistrano deployment.rb file. This line is supposed to trigger asset precompilation during deployment.
According to bundle show I'm using :
- bundler (1.1.4)
- capistrano (2.12.0)
- rails (3.1.3)
why is it not working?