aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
Commit message (Expand)AuthorAgeFilesLines
...
* performance improvement based on discussion at http://github.com/rails/rails/...Neeraj Singh2010-09-281-9/+3
* Revert "porting 066518295032a8e3f3468737337b8c8299442867 to master. Thanks M...Aaron Patterson2010-09-281-1/+1
* removing a conditional that is not usedAaron Patterson2010-09-281-2/+0
* fisting the postgresql testsAaron Patterson2010-09-281-1/+2
* Set attributes properly for model built from association with conditions [#55...Marcelo Giorgi2010-09-282-9/+14
* each works well tooAaron Patterson2010-09-281-1/+1
* no need for splat and flattenAaron Patterson2010-09-281-1/+1
* avoid calling to_sql when we canAaron Patterson2010-09-282-4/+4
* removing an inject + merge in favor of Hash#[]Aaron Patterson2010-09-281-1/+1
* Test add_index and remove_index with a symbol name #4891Étienne Barrié2010-09-281-4/+3
* porting 066518295032a8e3f3468737337b8c8299442867 to master. Thanks Marcelo G...Aaron Patterson2010-09-281-1/+1
* use new skool Ruby instead of Ruby Classic™Aaron Patterson2010-09-271-5/+3
* be kind to the garbage collector: only instantiate objects when absolutely ne...Aaron Patterson2010-09-271-14/+17
* constructor should not do so much work; avoid allocating object if possibleAaron Patterson2010-09-271-10/+5
* @klass also uses DynamicFinderMatch, so no need for it on the relationAaron Patterson2010-09-271-9/+0
* no need for a case / when statementAaron Patterson2010-09-271-11/+7
* do not need intermediate variable, avoid lasgnAaron Patterson2010-09-271-2/+3
* DRY up our regular expressionAaron Patterson2010-09-271-3/+3
* reduce method calls in the dynamic finder matcherAaron Patterson2010-09-271-4/+4
* make sure we use the engine assigned to the table when quotingAaron Patterson2010-09-271-1/+1
* Fix for nested_attributes with has_many association fails when a single recor...Neeraj Singh2010-09-271-1/+6
* Merge remote branch 'miloops/warnings'José Valim2010-09-271-3/+3
|\
| * Prevent shadowing outer local variable.Emilio Tagua2010-09-271-3/+3
* | Three performance improvements:Neeraj Singh2010-09-271-10/+9
|/
* third parameter is not usedAaron Patterson2010-09-261-1/+1
* db:structure:dump should list current Rails.env adapter in errors, not always...Nic Benders2010-09-261-1/+1
* Fix remove_index issue when provided :name is a symbolTim Connor2010-09-261-1/+1
* Delegate ActiveRecord::Base.offset to scoped methods (analogous to limit) [#5...Marcelo Giorgi2010-09-241-1/+1
* Fix warning message when db/schema.rb doesn't exist [#5625 state:resolved]Brian Candler2010-09-241-1/+1
* restore behavior of touch for models without :updated_xx [#5439 state:resolved]tnp2010-09-241-3/+2
* reject_id option should be respected while using nested_attributesNeeraj Singh2010-09-241-3/+3
* switch present in favor of emptyAaron Patterson2010-09-221-1/+1
* Refactor association_collection uniq method.Emilio Tagua2010-09-221-4/+3
* No need to use inject here.Emilio Tagua2010-09-221-5/+5
* Perf: refactor method.Emilio Tagua2010-09-221-11/+8
* No need to use inject here, use map instead.Emilio Tagua2010-09-221-4/+1
* Goodbye inject, hello map.Emilio Tagua2010-09-221-7/+5
* Use map instead inject.Emilio Tagua2010-09-221-4/+3
* Missing the mysql2 gem hereSantiago Pastorino2010-09-221-1/+1
* Error message should advice to use 'mysql2' gem.Neeraj Singh2010-09-221-2/+2
* avoid a proc objectAaron Patterson2010-09-221-1/+1
* avoid creating a range objectAaron Patterson2010-09-221-1/+1
* drying up construct_associationAaron Patterson2010-09-211-15/+15
* dry up some conditionalsAaron Patterson2010-09-211-3/+4
* fixing case / when indentationAaron Patterson2010-09-211-19/+19
* fix case / when indentationAaron Patterson2010-09-211-18/+18
* avoid a hash lookupAaron Patterson2010-09-211-2/+2
* remove more codesAaron Patterson2010-09-211-6/+4
* deleting more codeAaron Patterson2010-09-211-4/+1
* use each properly to avoid splatting a variableAaron Patterson2010-09-211-2/+1