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:
parent
b48d5fb9c1
commit
d7bc014fa6
1 changed files with 3 additions and 0 deletions
3
Capfile
3
Capfile
|
|
@ -3,6 +3,9 @@
|
||||||
# the COPYRIGHT file.
|
# the COPYRIGHT file.
|
||||||
|
|
||||||
load 'deploy' if respond_to?(:namespace) # cap2 differentiator
|
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) }
|
Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) }
|
||||||
|
|
||||||
load 'config/deploy' # remove this line to skip loading any of the default tasks
|
load 'config/deploy' # remove this line to skip loading any of the default tasks
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue