aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures/functional_caching/fragment_cached_with_options.html.erb
Commit message (Collapse)AuthorAgeFilesLines
* Properly verify that cache accepts and user `expires` value.Vipul A M2016-04-171-1/+1
|
* Merge pull request #22800 from dgynn/pr_cache_helper_optionsRafael Mendonça França2016-01-291-1/+1
| | | | Restore ability to pass extra options to cache stores
* restore ability to pass extra options to cache storesDave Gynn2015-12-261-0/+3
The `cache` helper methods should pass any extra options to the cache store. For example :expires_in would be a valid option if memcache was the cache store. The change in commit da16745 broke the ability to pass any options other than :skip_digest and :virtual_path. This PR restores that functionality and adds a test for it.