aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/builder/association.rb
Commit message (Expand)AuthorAgeFilesLines
* Method visibility will not make difference hereRafael Mendonça França2013-10-091-2/+0
* Remove builder instancesRafael Mendonça França2013-10-091-17/+5
* Extract the scope building to a class methodRafael Mendonça França2013-10-091-2/+17
* Move macro to class levelRafael Mendonça França2013-10-091-2/+2
* Make validate_options a class methodRafael Mendonça França2013-10-091-3/+3
* Make valid_options a class methodRafael Mendonça França2013-10-091-2/+2
* Define the association extensions without need to have a builderRafael Mendonça França2013-10-091-6/+6
* Push define_accessors to class level since we don't need anythig fromRafael Mendonça França2013-10-081-4/+4
* Use the reflection name instead of the accessorRafael Mendonça França2013-10-081-0/+1
* Move define_writers to class level since we don't need anything from theRafael Mendonça França2013-10-081-2/+2
* Move define_readers to class method since it doesn't need nothing fromRafael Mendonça França2013-10-081-3/+2
* remove some duplicate codeAaron Patterson2013-10-021-8/+1
* remove HABTM associationsAaron Patterson2013-10-021-1/+0
* Merge branch 'master' into habtmAaron Patterson2013-10-021-9/+10
|\
| * we can define callbacks without a builder instanceAaron Patterson2013-10-021-3/+3
| * add_before_destroy_callbacks doesn't depend on the instance, so push itAaron Patterson2013-10-021-4/+4
| * valid_options doesn't depend on the instance, so push it to the classAaron Patterson2013-10-021-3/+3
| * use the information on the reflection to determine whether callbacks should b...Aaron Patterson2013-10-021-4/+5
| * push constructable? on to the reflectionAaron Patterson2013-10-021-2/+2
* | Squashed commit of the following:Aaron Patterson2013-10-011-0/+11
|/
* support anonymous classes on has_many associationsAaron Patterson2013-09-031-1/+1
* remove intermediate assignmentsAaron Patterson2013-08-011-3/+2
* push option handling "chrome" outside `initialize`Aaron Patterson2013-08-011-8/+7
* remove `valid_options` class methodAaron Patterson2013-08-011-4/+3
* association builder classes no longer need the modelAaron Patterson2013-08-011-6/+5
* make mutation method apis more consistentAaron Patterson2013-08-011-2/+3
* push more mutations outside the factory methodAaron Patterson2013-08-011-0/+4
* push more mutations out of the builderAaron Patterson2013-08-011-8/+9
* remove dependency on @model when defining callbacksAaron Patterson2013-08-011-3/+3
* extract more mutations to the callerAaron Patterson2013-08-011-6/+10
* separate some mutations from reflection constructionAaron Patterson2013-08-011-5/+1
* pass the mixin in to the code generation methodsAaron Patterson2013-07-311-6/+6
* we should not allow invalid objects to be constructedAaron Patterson2013-07-311-1/+2
* push some validation up to the factory methodAaron Patterson2013-07-311-4/+5
* Refactor to use flat_mapCarlos Antonio da Silva2013-07-231-3/+3
* AR::Base does not need to know how to create reflection objectsAaron Patterson2013-07-221-1/+1
* remove unnecessary readerAaron Patterson2013-07-221-4/+4
* only flatten one sideAaron Patterson2013-07-221-1/+1
* extend by adding relationships rather than monkey patchingAaron Patterson2013-07-221-5/+7
* decouple extensions from association object stateAaron Patterson2013-07-221-2/+2
* Dropped deprecated option `:restrict` for `:dependent` in associationsNeeraj Singh2013-07-031-7/+0
* remove evals from the associationAaron Patterson2013-06-111-8/+2
* reduce evals in depdendent associationsAaron Patterson2013-06-111-1/+2
* copy edits[ci skip]Vijay Dev2013-05-191-11/+8
* Added some more documentation for define_readers and define_writer of the Ass...aditya-kapoor2013-05-151-0/+7
* Added some more documentation for ActiveRecord::Associations::Builder::Associ...aditya-kapoor2013-05-151-0/+11
* Added documentation for ActiveRecord::Associations::Builder::Association classaditya-kapoor2013-05-151-0/+4
* Ensure that associations have a symbol argument.Steve Klabnik2012-11-281-0/+2
* Use method compilation for association methodsJon Leighton2012-08-101-12/+15
* DRY up handling of dependent optionJon Leighton2012-08-101-3/+15