| Commit message (Expand) | Author | Age | Files | Lines |
* | merges docrails | Xavier Noria | 2011-02-18 | 1 | -1/+1 |
|\ |
|
| * | Fix Typos: remove several occurences of the the | Nicholas Rowe | 2011-02-17 | 1 | -1/+1 |
* | | Split AssociationProxy into an Association class (and subclasses) which manag... | Jon Leighton | 2011-02-18 | 1 | -1/+1 |
* | | explicitly allowing lolqueries | Aaron Patterson | 2011-02-16 | 1 | -10/+1 |
* | | use the arel table rather than generating strings | Aaron Patterson | 2011-02-16 | 1 | -1/+1 |
* | | no need for Array.wrap | Aaron Patterson | 2011-02-16 | 1 | -1/+1 |
* | | removed an unnecessary second query when passing an ActiveRecord::Relation to... | Steven Fenigstein | 2011-02-16 | 1 | -1/+4 |
* | | Remove Relation#& alias for Relation#merge | Ernie Miller | 2011-02-12 | 1 | -2/+0 |
* | | limit() should sanitize limit values | Aaron Patterson | 2011-02-08 | 1 | -1/+1 |
|/ |
|
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-02-05 | 1 | -1/+1 |
|\ |
|
| * | keep options titles consistent to "Options" | Gabriel Horner | 2011-02-03 | 1 | -1/+1 |
* | | The type_cast_calculated_value method will trust DB types before casting to a... | Ken Collins | 2011-02-03 | 1 | -1/+1 |
|/ |
|
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-01-20 | 1 | -0/+14 |
|\ |
|
| * | document ActiveRecord's except and only | Jordi Romero | 2011-01-15 | 1 | -0/+14 |
* | | Always return decimal average of integer fields | Raimonds Simanovskis | 2011-01-10 | 1 | -9/+5 |
* | | use select_all because not all database adapters support bind values | Aaron Patterson | 2011-01-08 | 1 | -1/+1 |
* | | stop creating intermediate AR objects, just construct AR objects from a list ... | Aaron Patterson | 2011-01-07 | 1 | -1/+2 |
* | | Explicitly select * from has_and_belongs_to_many association tables, simplify... | Raimonds Simanovskis | 2011-01-04 | 1 | -1/+1 |
* | | ActiveRecord::Relation#primary_key should return a string, just like ActiveRe... | Jon Leighton | 2011-01-03 | 4 | -14/+14 |
* | | Make Relation#create_with always merge rather than overwrite, not just when m... | Jon Leighton | 2011-01-03 | 2 | -4/+2 |
* | | Let AssociationCollection#find use #scoped to do its finding. Note that I am ... | Jon Leighton | 2011-01-03 | 1 | -1/+1 |
* | | User id instead of quoted_id to prevent double quoting. Fixes failing test fo... | Robert Pankowecki (Gavdi) | 2011-01-04 | 1 | -1/+1 |
* | | Rename AssociationReflection#primary_key_name to foreign_key, since the optio... | Jon Leighton | 2010-12-31 | 1 | -1/+1 |
* | | Specify the STI type condition using SQL IN rather than a whole load of ORs. ... | Jon Leighton | 2010-12-31 | 1 | -1/+5 |
|/ |
|
* | arel can escape the id, so avoid using the database connection | Aaron Patterson | 2010-12-22 | 1 | -1/+1 |
* | Arel::Table#[] always returns an attribute, so no need for || | Aaron Patterson | 2010-12-22 | 1 | -1/+1 |
* | to_sym stuff before passing it to arel | Aaron Patterson | 2010-12-22 | 1 | -1/+1 |
* | ActiveRecord::Base.joins should allow single nil argument [#6181 state:resolved] | Piotr Sarnacki | 2010-12-16 | 1 | -1/+1 |
* | make sure that join nodes are uniq | Aaron Patterson | 2010-12-16 | 1 | -1/+1 |
* | supporting arel AST nodes when building join statements | Aaron Patterson | 2010-12-16 | 1 | -3/+15 |
* | bucketing based on join type | Aaron Patterson | 2010-12-16 | 1 | -8/+17 |
* | taking advantage of the JoinSource node in the SQL AST | Aaron Patterson | 2010-12-16 | 2 | -17/+8 |
* | remove lasgn since AST is mutated | Aaron Patterson | 2010-12-16 | 1 | -1/+1 |
* | just mutate the ast, fewer lasgns | Aaron Patterson | 2010-12-16 | 1 | -3/+2 |
* | no more manager manipulation if there is no custom join ast | Aaron Patterson | 2010-12-10 | 1 | -6/+5 |
* | froms should never equal 0 | Aaron Patterson | 2010-12-10 | 1 | -2/+0 |
* | manager will always be a manager | Aaron Patterson | 2010-12-10 | 1 | -10/+6 |
* | eliminate lasgns | Aaron Patterson | 2010-12-10 | 1 | -10/+10 |
* | dealing with an AST manager, not a relation, so fix the variable names | Aaron Patterson | 2010-12-10 | 1 | -12/+12 |
* | adding a fixme comment | Aaron Patterson | 2010-12-08 | 1 | -0/+1 |
* | renaming variables, making the join_ast method private | Aaron Patterson | 2010-12-08 | 1 | -51/+27 |
* | further reducing dependence on custom_joins | Aaron Patterson | 2010-12-08 | 1 | -0/+2 |
* | reducing use of custom joins | Aaron Patterson | 2010-12-08 | 1 | -1/+6 |
* | passing the ast to a table when the relation is a table | Aaron Patterson | 2010-12-07 | 1 | -3/+20 |
* | JoinDependency is always created with an AST now | Aaron Patterson | 2010-12-07 | 1 | -1/+15 |
* | passing the ast to JoinDependency | Aaron Patterson | 2010-12-07 | 1 | -1/+1 |
* | cleaning up custom_join_sql method | Aaron Patterson | 2010-12-07 | 1 | -4/+6 |
* | use the columns hash for primary key lookup | Aaron Patterson | 2010-12-03 | 1 | -1/+1 |
* | fix warnings, stop using global variables | Aaron Patterson | 2010-11-30 | 1 | -4/+2 |
* | stop using splat args when we do not need them | Aaron Patterson | 2010-11-30 | 1 | -2/+2 |