aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/delegation.rb
Commit message (Expand)AuthorAgeFilesLines
* Use `load` rather than `collect` for force loadingRyuta Kamizono2017-03-191-1/+1
* Delegate `uniq` to `records`Ryuta Kamizono2017-03-181-1/+1
* Simply delegate `as_json` to `records`Ryuta Kamizono2017-03-101-1/+1
* Delegate `to_sentence` and `to_fomatted_s` to `records`kenta-s2017-02-041-0/+1
* Privatize unneededly protected methods in Active RecordAkira Matsuda2017-01-051-1/+1
* Mark internal cache constants as privateMatthew Draper2016-12-311-1/+4
* Privatize unneededly protected methods in Active RecordAkira Matsuda2016-12-241-1/+1
* removes requires already present in active_support/railsXavier Noria2016-10-271-2/+0
* let Regexp#match? be globally availableXavier Noria2016-10-271-1/+0
* Override `respond_to_missing?` instead of `respond_to?` when possibleSean Griffin2016-08-311-1/+1
* Merge pull request #26012 from grosser/grosser/missingSean Griffin2016-08-141-1/+1
|\
| * add index to array methods so we can call it on relationsMichael Grosser2016-08-121-1/+1
* | normalizes indentation and whitespace across the projectXavier Noria2016-08-061-21/+21
* | modernizes hash syntax in activerecordXavier Noria2016-08-061-2/+2
* | applies new string literal convention in activerecord/libXavier Noria2016-08-061-3/+3
|/
* adds missing requiresXavier Noria2016-07-241-0/+1
* systematic revision of =~ usage in ARXavier Noria2016-07-231-1/+1
* delegate encode_with instead of to_yaml, which is deprecatedVipul A M2016-05-051-1/+1
* connection adapters column, delegation in Active Record have not use of ‘se...Gaurav Sharma2016-03-311-1/+0
* Mutating the result of Relation#to_a should not affect the relationMatthew Draper2016-02-211-1/+1
* Add methods to array delegation from `Relation`Kevin Dougherty2016-02-191-1/+2
* Ensure `Relation` responds to `shuffle`Sean Griffin2015-12-011-1/+1
* Remove blanket array delegation from `Relation`Sean Griffin2015-11-231-14/+2
* docs, nodoc internal Active Record `DelegateCache`. [ci skip]Yves Senn2015-10-131-3/+3
* Freeze string literals when not mutated.schneems2015-07-191-1/+1
* Allow Relation#compact using delegationJordan Raine2015-05-281-1/+1
* Remove unneeded `require 'as/deprecation'`claudiob2015-01-041-1/+0
* Put back Relation#join method as a delegate to ArrayBogdan Gusiev2014-05-051-1/+1
* select! renamed to avoid name collision Array#select!Earl J St Sauver2014-04-211-1/+1
* Create a blacklist to disallow mutator methods to be delegated to `Array`.Lauro Caetano2013-12-171-11/+14
* argument prefix warning removedArun Agrawal2013-12-131-1/+1
* Add a bunch of Relation -> Array delegate methods to the whitelist. This won'...Jeremy Kemper2013-12-121-4/+12
* Use `public_send` instead of just use `send`.Lauro Caetano2013-12-121-5/+5
* Use a whitelist to delegate methods to arrayLauro Caetano2013-12-121-18/+6
* Deprecate the delegation of Array bang methods in ActiveRecord::DelegationBen Woosley2013-09-041-3/+14
* no need to fully qualifyAaron Patterson2013-08-301-1/+1
* move the cache to the AR models and populate it on inheritedAaron Patterson2013-08-301-20/+29
* no need for the const_get since we lockAaron Patterson2013-08-301-5/+1
* require a class for cache computationsAaron Patterson2013-08-301-1/+3
* cache misses should return selfAaron Patterson2013-08-301-1/+1
* stop relying on side effects of const_missingAaron Patterson2013-07-231-7/+7
* add a specific factory method rather than using newAaron Patterson2013-07-231-4/+2
* add missing :nodoc: marks to ActiveRecord::Delegation [ci skip]Francesco Rodriguez2013-04-291-3/+3
* Use define_method when method name contains weird characters.Krzysztof Jurewicz2013-03-181-5/+3
* remove AR auto-explain (config.auto_explain_threshold_in_seconds)Yves Senn2013-02-241-1/+1
* These are already required through AS/railsAkira Matsuda2013-01-071-1/+0
* Replace some global Hash usages with the new thread safe cache.thedarkone2012-12-141-22/+16
* Use separate Relation subclasses for each AR classJon Leighton2012-11-301-32/+100
* Make ActiveRecord::Delegation#method_missing threadsafeJon Leighton2012-11-101-3/+21
* load active_support/core_ext/module/delegation in active_support/railsXavier Noria2012-08-021-1/+0