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. :)
11 lines
482 B
Ruby
11 lines
482 B
Ruby
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# 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
|