aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache/null_store.rb
Commit message (Collapse)AuthorAgeFilesLines
* use prepend instead of extending every instanceMichael Grosser2015-11-061-4/+1
| | | | | extending an instance with a module puts the methods on top of it, prepend does the same but on the class level, so less work for us and more standard way of doing things
* Add ActiveSupport::Cache::NullStore to expose caching interface without ↵Brian Durand2011-12-121-0/+44
actually caching for development and test environments.