little update to a cache utility gem
https://github.com/igorkasyanchuk/cache_with_locale received a new contribution, now can cache collection.
PS: gem is doing the following in your views
Instead of:
```
cache [@user, I18n.locale] do
render @user
end
```
Just write:
```
cache @user do
render @user
end
```
Post a comment