cache_digests
cache_digests copied to clipboard
I have two templates as follow: # app/views/projects/show.html.erb All documents # app/views/documents/_document.html.erb My document: When I change html in _document.html.erb, I refresh the page, but it does not update. What...
I'm trying to use cache_digest gem with jbuilder (currently using Rails 3.x) I can't seem to make it work like this. ``` ruby cache @videos do json.partial! "api/videos/video", collection: @videos,...
It is impossible to include a partial with cache into email to be sent using ActionMailer. ``` ActionView::Template::Error (undefined method `perform_caching' for #): 1: ... ``` So I have added...
My templates are all in HAML and it took me a while to figure out why my dependencies weren't being recognized and how to fix it. I added an initializer,...
Adding capability to get digest from `` Added tests -- This current functionality is available in the Rails 4 version, but some of our older projects are still a bit...
Addressing https://github.com/rails/cache_digests/issues/4 on README [](https://reviewable.io/reviews/rails/cache_digests/37)
Update the TemplateDigestor regex to fix #17.
Hi, I was playing around trying to use cache_digests to generate a checksum for a generated pdf (based on views with pdf as the format). After much head-scratching I think...
Hi, I have the following situation: My navigation is organized tree-based structure that is rendered recursively by partials. Because of that complex recursive structure I stopped trying to achieve this...