Skip to content

Instantly share code, notes, and snippets.

@manleyhimself
Created December 16, 2013 20:16
Show Gist options
  • Save manleyhimself/7993614 to your computer and use it in GitHub Desktop.
Save manleyhimself/7993614 to your computer and use it in GitHub Desktop.
<!-- app/views/stores/show.html.erb -->
<% cache ["v3", @store] do%>
<h1>Store: <%= @store.name %></h1>
<%= render @store.employees %>
<% end %>
<!-- app/views/employees/_employee.html.erb -->
<% cache ["v3", employee] do %>
<div class='employee'>
<span><%= employee.name %></span>
<p><%= employee.position %></p>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment