We have a site that builds locally with Jekyll and Jekyll-Assets (which uses sprockets).
We'd like to be able to generate a cache manifest that has all the files that go into the resultant site. We'd like to generate this as a part of the build process so that the entire site will be available offline. (It's a very small site, but we're opposed to manual work!)
The images and the css have a hash appended to the filename during the build so we can't predict the outcome.
We've tried using the {% asset_path logo.png %}
etc. method, but it doesn't get processed. I.e. it leaves the Liquid tag as is in the final file. ERB does work (<%= 2+3 %>
gives 5) but we can't see a way of accessing the resultant files.
We are considering another task runner to wrap the whole thing, but this feels like overkill.