diff options
author | Angelo capilleri <capilleri@yahoo.com> | 2012-12-12 18:26:38 +0100 |
---|---|---|
committer | Angelo capilleri <capilleri@yahoo.com> | 2012-12-14 17:51:52 +0100 |
commit | 83223424b33e332673fc3e4bdcae7477e601377f (patch) | |
tree | 437a668dc56c84b7defc5c0e4913386f86c9b7fd /actionpack/lib/action_view/helpers/rendering_helper.rb | |
parent | d4333eded218346eb8b8313f7c69851782f594ef (diff) | |
download | rails-83223424b33e332673fc3e4bdcae7477e601377f.tar.gz rails-83223424b33e332673fc3e4bdcae7477e601377f.tar.bz2 rails-83223424b33e332673fc3e4bdcae7477e601377f.zip |
Removed :if and :unless from fragment cache option in favour of
cache_if(condition, option, &block) and cache_unless(condition, option, &block).
In the PR #8371 was introduced conditional options :if and :unless in
the cache method.
Example:
<%= cache @model, if: some_condition(@model) do %>
...
<%end%>
This is a good feature but *cache_if* and and *cache_unless*
are more concise and close to the standard of rails view helpers
(ex: link_to_if and link_to_unless).
Example:
<%= cache_if condition, @model do %>
...
<%end%>
Diffstat (limited to 'actionpack/lib/action_view/helpers/rendering_helper.rb')
0 files changed, 0 insertions, 0 deletions