aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
...
* | Revert "Explicitly included hashes in sentence regarding SQL-injection-safe f...Xavier Noria2011-08-041-3/+3
* | Explicitly included hashes in sentence regarding SQL-injection-safe formsPete Campbell2011-08-041-3/+3
|/
* fix after_initialize edge case (close #2074 and close #2175)Les Fletcher2011-07-241-2/+1
* Merge pull request #2185 from castlerock/lazy_load_abstract_adapterAaron Patterson2011-07-231-2/+0
|\
| * lazy load ConnectionAdapters remove require.Vishnu Atrai2011-07-221-2/+0
* | Merge pull request #2086 from amatsuda/date_multiparameter_nilXavier Noria2011-07-231-3/+6
|\ \
| * | convert multiple Date parameters into a nil if any of its bits were blankAkira Matsuda2011-07-151-3/+6
* | | Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-07-231-1/+1
|\ \ \ | |_|/ |/| |
| * | use simpler words in docsVijay Dev2011-07-101-1/+1
* | | Refactor the code a bit to reduce the duplicationPrem Sichanugrist2011-07-171-17/+8
* | | Raise an ArgumentError if user passing less number of argument in the dynamic...Prem Sichanugrist2011-07-171-0/+10
| |/ |/|
* | Fix and unit test for https://github.com/rails/rails/issues/2059Evan Light2011-07-141-1/+2
|/
* Merge pull request #1273 from jeremyf/feature-association-proxy-sendSantiago Pastorino2011-07-061-1/+1
|\
| * Addresses an inconsistency in the ActiveRecord::Base.method_missing handling ...Jeremy Friesen2011-05-241-1/+1
* | Use an instance variable to store the current masss assignment optionsAndrew White2011-07-041-9/+14
* | call super rather than delegating to the other objects equal? methodAaron Patterson2011-06-301-1/+1
* | just alias eql? to == for frewer method callsAaron Patterson2011-06-301-5/+1
* | Define to_ary on ActiveRecord::Base to return nil. Improve performance of Arr...Jon Leighton2011-06-301-0/+12
* | Merge pull request #1860 from dmathieu/comparisonAaron Patterson2011-06-281-0/+9
|\ \
| * | comparing different classes returns nilDamien Mathieu2011-06-261-1/+5
| * | allow comparison on model objects - Closes #1858Damien Mathieu2011-06-261-0/+5
* | | remove useless assignmentAaron Patterson2011-06-281-2/+1
* | | reduce object allocation during AR instantiationAaron Patterson2011-06-281-0/+2
* | | remove the check for needs_type_condition? because ensure_proper_type will pi...Aaron Patterson2011-06-271-2/+3
* | | stop using && for the short circuit side effectAaron Patterson2011-06-271-1/+1
* | | let strings be converted to symbols inside the interpreterAaron Patterson2011-06-271-2/+2
* | | avoice paying hash cost if there are no serialized attributesAaron Patterson2011-06-271-3/+4
* | | cache column defaults for AR object instantiationAaron Patterson2011-06-271-0/+6
* | | AR object instantiation is ~30% faster in the simple caseAaron Patterson2011-06-271-1/+1
* | | initialize instance variablesAaron Patterson2011-06-271-0/+2
|/ /
* | Perf fix - Use an instance variable instead of a class_attribute. Thanks @jos...Jon Leighton2011-06-161-8/+4
* | Pass mass-assignment options to nested models - closes #1673.Andrew White2011-06-131-3/+6
* | don't reinitialize the arel_table unless the table_name changesDamien Mathieu2011-06-091-1/+2
* | No need to create a new Arel::Table, as the arel_table method already creates...Rodrigo Navarro2011-06-081-1/+0
* | remove warning: assigned but unused variableSantiago Pastorino2011-06-081-1/+1
* | Raise NameError instead of ArgumentError in ActiveSupport::DependenciesAndrew White2011-06-011-1/+0
* | Merge pull request #1285 from joshk/remove_active_record_deprecationsAaron Patterson2011-05-251-15/+2
|\ \
| * | removed deprecated methods, and related tests, from ActiveRecordJosh Kalderimis2011-05-251-15/+2
* | | Fix the AR::Base#inspect method [closes #1294]Franck Verrot2011-05-251-6/+10
|/ /
* / Fix infinite recursion where a lazy default scope references a scope. Fixes #...Jon Leighton2011-05-251-3/+12
|/
* Merge pull request #1180 from Karunakar/documentation_changeXavier Noria2011-05-211-3/+13
|\
| * Documentation Error Fixed for ticket #839Karunakar (Ruby)2011-05-211-3/+13
* | Merge pull request #1162 from guilleiguaran/singularize_individual_table_nameJon Leighton2011-05-211-2/+2
|\ \ | |/ |/|
| * Allow pluralize_table_names for individual modelGuillermo Iguaran2011-05-201-2/+2
* | Syntax cleanup: for in => eachGuillermo Iguaran2011-05-191-1/+1
|/
* Add doc to #attribute_namesSebastian Martinez2011-05-151-0/+3
* Add ActiveRecord::attribute_names to retrieve a list of attribute names. This...Prem Sichanugrist2011-05-151-0/+8
* Fix assigning protected attributes by attributes=knapo2011-05-111-4/+3
* fix bug in usage example of #unscopedCorin Langosch2011-05-111-1/+1
* Ensure assign_attributes and update_attributes do not fail on nil, closes #478.José Valim2011-05-101-0/+2