Last Updated: February 25, 2016
·
286
· across

Note about rails assets prefix in capistrano

If you have these settings in rails:

#application.rb
config.assets.prefix = '/someprefix/assets'

But in capistrano you need remove first trailing slash:

#deploy.rb
set :assets_prefix, "someprefix/assets"