| Commit message (Expand) | Author | Age | Files | Lines |
* | Relation#merge and Relation#except should respect locks | Pratik Naik | 2010-01-03 | 1 | -1/+3 |
* | Relation#merge and Relation#except should respect havings | Pratik Naik | 2010-01-03 | 1 | -1/+3 |
* | Add Relation#except | Pratik Naik | 2010-01-03 | 1 | -0/+22 |
* | Rename a variable name for consistency | Pratik Naik | 2010-01-03 | 3 | -7/+7 |
* | Move Relation#spawn and Relation#merge to a separate module | Pratik Naik | 2010-01-03 | 3 | -46/+51 |
* | Give preference to the second relation's order when merging | Pratik Naik | 2010-01-03 | 1 | -3/+10 |
* | Reapply "Remove optional join_dependency argument as Relation always supplies... | Pratik Naik | 2010-01-03 | 1 | -2/+1 |
* | Revert "Remove optional join_dependency argument as Relation always supplies it" | Jeremy Kemper | 2010-01-02 | 1 | -1/+2 |
* | Remove optional join_dependency argument as Relation always supplies it | Pratik Naik | 2010-01-03 | 1 | -2/+1 |
* | Further simplify Relation#references_eager_loaded_tables? | Pratik Naik | 2010-01-03 | 1 | -20/+3 |
* | Cache Relation#to_sql | Pratik Naik | 2010-01-03 | 1 | -2/+5 |
* | Remove unused code from association.rb now that Relation takes care of checki... | Pratik Naik | 2010-01-03 | 1 | -78/+0 |
* | Make Relation#includes behave exactly like the existing :include option | Pratik Naik | 2010-01-03 | 2 | -14/+32 |
* | Add Relation#includes to be an equivalent of current finder option :include | Pratik Naik | 2010-01-03 | 4 | -7/+19 |
* | Get rid of Model.construct_finder_arel_with_includes. Use construct_finder_ar... | Pratik Naik | 2010-01-03 | 3 | -15/+10 |
* | Simply methods for checking eager loaded tables references in the query | Pratik Naik | 2010-01-03 | 1 | -7/+7 |
* | Use activerecord.errors.format as in Rails 2.3.5. | José Valim | 2010-01-02 | 1 | -0/+3 |
* | Make nested attributes behave like in 2.3.5 and add a sanity test for it with... | José Valim | 2010-01-02 | 1 | -1/+1 |
* | Implement Relation#create and Relation#create! | Pratik Naik | 2010-01-03 | 1 | -1/+13 |
* | Implement Relation#new | Pratik Naik | 2010-01-03 | 1 | -1/+12 |
* | Use arel predicates instead of strings wherever possible when merging relations | Pratik Naik | 2010-01-02 | 1 | -11/+10 |
* | Give higher preference to second relation's equality predicates when merging | Pratik Naik | 2010-01-02 | 1 | -11/+27 |
* | Make sure not to spalt string arguments | Pratik Naik | 2010-01-02 | 1 | -1/+1 |
* | Use relations to build uniqueness conditions | Pratik Naik | 2010-01-02 | 1 | -8/+9 |
* | Fix join string for the WHERE clause | Pratik Naik | 2010-01-02 | 1 | -1/+1 |
* | Rename Model.arel_table to Model.active_relation | Pratik Naik | 2010-01-02 | 7 | -29/+29 |
* | Rename Model.engine to active_relation_engine. Cache arel_table and the metho... | Pratik Naik | 2010-01-02 | 2 | -9/+14 |
* | Use Arel::Table instead of ActiveRecord::Relation from HABTM and has_many#del... | Pratik Naik | 2010-01-01 | 2 | -4/+4 |
* | Remove unncessary arguments passed to arel_table | Pratik Naik | 2010-01-01 | 2 | -2/+3 |
* | Use arel for building the STI type condition | Pratik Naik | 2010-01-01 | 1 | -7/+7 |
* | Make sure association proxy does not pass quoted table name to sanitize_sql | Pratik Naik | 2010-01-01 | 1 | -1/+1 |
* | Handle Range with excluded end | Pratik Naik | 2010-01-01 | 1 | -1/+8 |
* | Try using cached attribute before creating a new one | Pratik Naik | 2010-01-01 | 1 | -1/+1 |
* | Use PredicateBuilder for sql hash sanitization | Pratik Naik | 2010-01-01 | 3 | -26/+14 |
* | Fix the method name for recusion | Pratik Naik | 2010-01-01 | 1 | -1/+1 |
* | Move predicate building to a stand alone PredicateBuilder class | Pratik Naik | 2010-01-01 | 3 | -30/+41 |
* | Some railties cleanup: | Carl Lerche | 2009-12-31 | 1 | -2/+2 |
* | Rename rails.rb -> rails/all.rb and rails/core.rb -> rails.rb | Carl Lerche | 2009-12-31 | 1 | -0/+1 |
* | Use Arel::Attribute when building where conditions from hash | Pratik Naik | 2010-01-01 | 1 | -5/+36 |
* | Add a /rails.rb for each framework for consistency | Carl Lerche | 2009-12-31 | 1 | -0/+1 |
* | Use Arel::Attribute for pk conditions | Pratik Naik | 2010-01-01 | 1 | -4/+4 |
* | Add Relation#table to get the relevant Arel::Table | Pratik Naik | 2010-01-01 | 1 | -1/+10 |
* | Add Relation#delete [Pratik Naik, Emilio Tagua] | Pratik Naik | 2010-01-01 | 3 | -4/+8 |
* | Revert "Add config.action_controller.include behavior to plugins." | Jeremy Kemper | 2009-12-30 | 1 | -1/+0 |
* | Fix up AR extension by using Railties module instead of Rails and requiring C... | Jeremy Kemper | 2009-12-30 | 4 | -8/+10 |
* | depends on Module#attr_internal | Jeremy Kemper | 2009-12-30 | 1 | -1/+3 |
* | Merge commit 'josevalim/arlog' | Jeremy Kemper | 2009-12-30 | 5 | -32/+38 |
|\ |
|
| * | Kick AR logging back to life and move ControllerRuntime inside ActiveRecord::... | José Valim | 2009-12-30 | 5 | -32/+38 |
* | | Merge commit 'josevalim/callbacks' | Jeremy Kemper | 2009-12-30 | 3 | -4/+9 |
|\ \ |
|
| * | | Get rid of DeprecatedCallbacks in ActiveRecord::Associations and finally remo... | José Valim | 2009-12-30 | 3 | -4/+9 |
| |/ |
|