aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/memoizable.rb
Commit message (Expand)AuthorAgeFilesLines
* memoized protected methods should remain protectedAndrew Kaspick2010-09-241-0/+2
* moves Object#singleton_class to Kernel#singleton_class to match Ruby also the...Xavier Noria2010-04-051-1/+1
* Use Object#singleton_class instead of #metaclass. Prefer Ruby's choice.Jeremy Kemper2010-02-251-1/+1
* Kill unused SafelyMemoizable [#3323 state:resolved]Joshua Peek2009-10-121-13/+0
* Escaping symbol passed into Memoizable's flush_cache for query methods to all...Jay Pignata2009-09-281-2/+2
* make private_and_public_methods unmemoizable [#2372 state:resolved]jeem2009-08-091-1/+1
* Cherry-picking Active Support extensionsJeremy Kemper2009-05-141-0/+1
* Fix dependencies revealed by testing in isolationJeremy Kemper2009-04-221-0/+2
* Bring abstract_controller up to date with rails/masterCarl Lerche & Yehuda Katz2009-04-131-0/+4
|\
| * Ensure ActiveSupport::Memoizable respects private methods. [#2138 state:resol...Niels Ganser2009-03-061-0/+4
* | Updated old AC::Base for small changes to AVYehuda Katz and Carl Lerche2009-04-081-2/+2
* | Remove duplicate ConcurrentHashJeremy Kemper2009-01-311-25/+0
* | Reorganize ActionController folder structureJoshua Peek2009-01-271-0/+38
* | Begin unifying the interface between ActionController and ActionViewYehuda Katz2009-01-221-1/+1
|/
* Inline code comments for class_eval/module_eval [#1657 state:resolved]Xavier Noria2008-12-281-28/+30
* Add Memoizable#flush_cache to clear the cache of a specific method [#1505 sta...Joshua Peek2008-12-031-16/+28
* Fix memoize_all for methods with punctuation [#1175 state:resolved]Eugene Pimenov2008-10-051-3/+7
* Check whether memoized ivar is initializedJeremy Kemper2008-09-081-1/+1
* Ensure results returned by a memoized method are immutableJoshua Peek2008-08-131-2/+2
* memoize_ and unmemoize_allJeremy Kemper2008-08-131-18/+33
* Freeze memoized results when instance is frozen instead of immediately so you...Jeremy Kemper2008-08-071-3/+3
* Fixed memoize with punctuation and freezing memoized methods with argumentsJeremy Kemper2008-08-071-4/+11
* Optimize memoized method if there are no argumentsJoshua Peek2008-08-061-7/+17
* Don't rememoize if already frozenJeremy Kemper2008-07-281-4/+3
* Improved Memoizable test coverage and added support for multiple argumentsJoshua Peek2008-07-221-22/+33
* Ruby 1.9: Ensure Memoizable#freeze is only overriden once to avoid an endless...Joshua Peek2008-07-181-14/+12
* Changed ActiveSupport::Memoizable API to extend since it mainly adds the memo...Joshua Peek2008-07-181-27/+28
* Allow memoized methods to be reloaded and allow multiple symbolsJoshua Peek2008-07-181-15/+17
* Append a "_" to memoized instance variablesJoshua Peek2008-07-141-3/+4
* Some performance tweaks to ActiveSupport::MemoizableTarmo Tänav2008-07-141-2/+4
* memorize typoJoshua Peek2008-07-141-3/+3
* Added Memoizable mixin for caching simple lazy loaded attributesJoshua Peek2008-07-141-0/+32