Make Capistrano precompile assets on deploy

This is straight out of the Rails guide. :)

Capistrano (v2.8.0 and above) includes a recipe to handle asset
precompiling in deployment. Since Gemfile.lock says we're using
v2.9.0 anyway, we should be using this to make life easier for
podmins who use Capistrano to deploy. :)
This commit is contained in:
Steven Hancock 2012-03-23 17:26:58 -07:00 committed by Maxwell Salzberg
parent b48d5fb9c1
commit d7bc014fa6

View file

@ -3,6 +3,9 @@
# the COPYRIGHT file.
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
# Precompile assets in deployment (for Capistrano >= 2.8.0)
load 'deploy/assets' if respond_to?(:namespace)
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
load 'config/deploy' # remove this line to skip loading any of the default tasks