| Commit message (Expand) | Author | Age | Files | Lines |
* | deprecated the use of the guard_protected_attributes argument with attributes... | Josh Kalderimis | 2011-04-25 | 1 | -9/+14 |
* | Added assign_attributes to Active Record which accepts a mass-assignment secu... | Josh Kalderimis | 2011-04-24 | 1 | -1/+40 |
* | Bring back support for passing a callable object to the default_scope macro. ... | Jon Leighton | 2011-04-18 | 1 | -0/+12 |
* | Un-deprecate using 'default_scope' as a macro, but if you are calling the mac... | Jon Leighton | 2011-04-18 | 1 | -20/+27 |
* | Evaluate default scopes at the last possible moment in order to avoid problem... | Jon Leighton | 2011-04-12 | 1 | -8/+5 |
* | Deprecated support for passing hashes and relations to default_scope, in favo... | Jon Leighton | 2011-04-12 | 1 | -51/+93 |
* | Delegate first!, last!, any? and many? to scoped | Andrew White | 2011-03-29 | 1 | -1/+2 |
* | Bring #reorder back | Sebastian Martinez | 2011-03-28 | 1 | -1/+1 |
* | Do not in place modify what table_name returns | Santiago Pastorino | 2011-03-22 | 1 | -1/+1 |
* | Merge branch 'master' into nested_has_many_through | Jon Leighton | 2011-03-05 | 1 | -3/+3 |
|\ |
|
| * | use Arel::Table#alias rather than passing the :as parameter | Aaron Patterson | 2011-03-05 | 1 | -2/+2 |
| * | fixes a missmatched column in example | mjy | 2011-03-05 | 1 | -1/+1 |
* | | Use Base#type_condition in JoinAssociation | Jon Leighton | 2011-03-05 | 1 | -2/+2 |
|/ |
|
* | Rewrote AssociationPreload. | Jon Leighton | 2011-02-28 | 1 | -1/+1 |
* | Fix missing inheritance from AR::Base in docs | Josep M. Bach | 2011-02-24 | 1 | -1/+1 |
* | merges docrails | Xavier Noria | 2011-02-18 | 1 | -4/+1 |
|\ |
|
| * | removes unrealistic example (authentication plus gender?), that it is not nee... | Xavier Noria | 2011-02-18 | 1 | -4/+1 |
| * | Clarify Example in ActiveRecord base | Nicholas Rowe | 2011-02-18 | 1 | -1/+1 |
* | | Merge remote branch 'rails/master' into identity_map | Emilio Tagua | 2011-02-15 | 1 | -70/+152 |
|\ \ |
|
| * | | Add interpolation of association conditions back in, in the form of proc { ..... | Jon Leighton | 2011-02-14 | 1 | -6/+0 |
| * | | bugfix for serialized_attributes to be class specific | Raimonds Simanovskis | 2011-02-09 | 1 | -1/+3 |
| * | | make set_table_name take effect immediately | Jan | 2011-02-08 | 1 | -0/+3 |
| |/ |
|
| * | almost fisted | Aaron Patterson | 2011-02-04 | 1 | -20/+6 |
| * | allow AR caches to be cleared, clear them on class reloading | Aaron Patterson | 2011-02-03 | 1 | -0/+6 |
| * | Revert "ARel only requires the connection from the AR class. Simply return th... | Aaron Patterson | 2011-02-03 | 1 | -2/+8 |
| * | ARel only requires the connection from the AR class. Simply return the AR cla... | Aaron Patterson | 2011-02-03 | 1 | -8/+2 |
| * | reduce cache misses on STI subclasses | Aaron Patterson | 2011-02-03 | 1 | -2/+4 |
| * | this method should be private | Aaron Patterson | 2011-02-03 | 1 | -7/+7 |
| * | Make serialized columns with explicit object_type return a new instance of th... | Guillermo Álvarez | 2011-02-03 | 1 | -4/+20 |
| * | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-02-02 | 1 | -1/+1 |
| |\ |
|
| | * | missing parentheses | Akira Matsuda | 2011-01-29 | 1 | -1/+1 |
| * | | Refactor clear_timestamp_attributes to use the newly created all_timestamp_at... | Franck Verrot | 2011-02-02 | 1 | -5/+3 |
| * | | make sure de-serialization happens on object instantiation | Aaron Patterson | 2011-02-01 | 1 | -2/+8 |
| * | | store the serialized column values in the @attributes hash | Aaron Patterson | 2011-02-01 | 1 | -7/+14 |
| * | | serialize can take an arbitrary code object | Aaron Patterson | 2011-02-01 | 1 | -1/+7 |
| * | | share column cache among subclasses, only look up columns per AR::Base subcla... | Aaron Patterson | 2011-02-01 | 1 | -13/+15 |
| * | | move the coders to the serialized_attributes hash | Aaron Patterson | 2011-02-01 | 1 | -8/+4 |
| * | | avoid column lookup on subclasses, keep column info cached as table_name => c... | Aaron Patterson | 2011-02-01 | 1 | -2/+8 |
| * | | Use run_callbacks; the generated _run_<name>_callbacks method is not a public... | John Firebaugh | 2011-01-31 | 1 | -3/+3 |
| * | | load and prefer psych as the YAML parser when it is available | Aaron Patterson | 2011-01-21 | 1 | -0/+5 |
| |/ |
|
| * | Arel::Table.engine will be deprecated, so stop using it | Aaron Patterson | 2011-01-14 | 1 | -1/+1 |
| * | use underlying _read_attribute method rather than causing NoMethodErrors | Aaron Patterson | 2011-01-11 | 1 | -1/+1 |
| * | lazily instantiate AR objects in order to avoid NoMethodErrors | Aaron Patterson | 2011-01-11 | 1 | -9/+10 |
| * | Use encode_with for marshalling | Jon Leighton | 2011-01-07 | 1 | -0/+20 |
| * | use a hash for caching aggregations rather than ivars | Aaron Patterson | 2011-01-07 | 1 | -2/+3 |
| * | just use a hash for doing association caching | Aaron Patterson | 2011-01-07 | 1 | -2/+5 |
| * | adding an `encode_with` method for Psych dump/load methods | Aaron Patterson | 2011-01-05 | 1 | -0/+16 |
| * | Specify the STI type condition using SQL IN rather than a whole load of ORs. ... | Jon Leighton | 2010-12-31 | 1 | -4/+8 |
| * | Simplify inspect implementation | Santiago Pastorino | 2010-12-28 | 1 | -1/+1 |
| * | No need to symbolize these. | José Valim | 2010-12-27 | 1 | -2/+4 |