Skip to content

Instantly share code, notes, and snippets.

@dayvsonlima
Forked from edipofederle/gist:748417a0f3308c15337e
Last active August 29, 2015 14:26
Show Gist options
  • Save dayvsonlima/8e70357c5d993a1b6957 to your computer and use it in GitHub Desktop.
Save dayvsonlima/8e70357c5d993a1b6957 to your computer and use it in GitHub Desktop.
# Funciona perfeitamente bem
<% cache "tags", skip_digest: true do %>
<% current_user.each do |tag| %>
<%= tag.name %>
<% end %>
<% end %>
# Simplesmente não renderiza nada
<% cache ["tags", current_user], skip_digest: true do %>
<% current_user.each do |tag| %>
<%= tag.name %>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment