I am hosting my assets on s3. In production, rails is looking for /javascripts/cache/all.js and /stylesheets/cache/all.css. I'm using a plugin to swoop the public directory over to s3 when I deploy with cap. The problem is that rails doesn't create these cache files until they are requested for the first time, so they aren't around during deployment when I transfer the public dir. Is there an easy way to force the creation of these files during deployment?
|
The actual rails module that creates the cache files is
Both those I created a simple cap task that just wrote the files out:
|
|||
|
|
|
I use this in a rake task file. Saves you from creating an additional class and you keep it DRY because you're using the values from the
|
|||
|
|
|
If you're using Engine Yard Cloud, this is what I did: added a file /lib/tasks/assetcache.rake
then I added /lib/assetwriter.rb require 'action_view' class AssetCacheWriter include ActionView::Helpers::AssetTagHelper def write write_asset_file_contents(File.join(JAVASCRIPTS_DIR, "cache/all.js"), compute_javascript_paths([:all], true)) write_asset_file_contents(File.join(STYLESHEETS_DIR, "cache/all.css"), compute_stylesheet_paths([:all], true)) end end then I added to /deploy/after_restart.rb run "cd #{release_path} && bundle exec rake assetcache:generate" |
|||
|
|
|
I found that include order mattered (so, for example, jQuery is included before other scripts) and so used the below approach instead. Also allows for the use of :defaults. First lib/asset_pacakger:
Then scripts/package_assets:
Then a cap task:
|
|||
|
|
|
In Rails 3.0.7 none of the above approaches seemed to work. I got many errors about config being undefined. After getting my hands dirty looking over the Rails code, I came up with this solution that is working for me. lib/tasks/cache_assets.rake
And then lib/asset_packager.rb
Then to execute it, just run |
|||
|
|