Imagine you have two views with code like the following:
controller_a/a.html.erb
<%= content_tag(:div) do %>
<%= I18n.t "some.key" %>
<% end %>
controller_b/b.html.erb
<%= content_tag(:div) do %>
<%= I18n.t "some.key" %>
<% end %>
<%= content_tag(:div) do %>
<%= I18n.t "some.other_key" %>
<% end %>
So, a.html.erb
is on controller_a#a, while b.html.erb
is on controller_b#b. Both actions are cached by caches_action
. How can I make sure that when I change the some.key
translation key, both views are invalidated? How could I build a generic mechanism?
Say, in your
ApplicationController
create the following class-method (or in a lib andextend
by it):Then you can use
:cache_path
option in yourcaches_action
this way:Just make sure that you set the locale in a
before_filter
before this statement.Docs on
cache_path
.Note: I'm using the scope of translation (
'some'
) to get all its nested messages as a hash.