From d7bc014fa6bca073019ee5ec1f05a0ce4337319a Mon Sep 17 00:00:00 2001 From: Steven Hancock Date: Fri, 23 Mar 2012 17:26:58 -0700 Subject: [PATCH] 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. :) --- Capfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Capfile b/Capfile index 30fc4618d..dbd84da27 100644 --- a/Capfile +++ b/Capfile @@ -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