aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* Performance: absorb instantiate and initialize_with_callbacks into the Base m...Jeremy Kemper2007-08-313-34/+17
* Remove commented out test which refers to old code, old bugs and uses ObjectS...Michael Koziarski2007-08-291-22/+0
* Formatting, grammar and spelling fixes for the associations documentation. [s...Michael Koziarski2007-08-288-226/+226
* Fix documentation error in xml serialization. [matt] Closes #9001Michael Koziarski2007-08-281-1/+1
* Formatting and grammatical fixes for the acts_as_* documentation [seanhussey,...Michael Koziarski2007-08-283-30/+30
* Pass the right binding when string is passed to :if with validations. [casper...Michael Koziarski2007-08-282-1/+23
* Use extract_options instead of ad-hoc partial implementations. [norbert] Clos...Michael Koziarski2007-08-281-11/+12
* Remove unnecessary loop in validates_presence_of. [sur] Closes #9392Michael Koziarski2007-08-281-7/+5
* Make sure create! raises errors on validation when creating multiple records....Michael Koziarski2007-08-282-1/+7
* Fix spacingDavid Heinemeier Hansson2007-08-212-2/+2
* Fixed that eager loading queries and with_scope should respect the :group opt...David Heinemeier Hansson2007-08-213-8/+17
* Fixed that eager loading queries should respect the :group option as well [DHH]David Heinemeier Hansson2007-08-212-1/+6
* Improve performance and functionality of the postgresql adapter. Closes #804...Michael Koziarski2007-08-167-213/+660
* Don't clobber :includes passed to count on has_many association. Closes #9175...Michael Koziarski2007-08-163-1/+9
* Make sure has_many associations honour :include when counting. Closes #9167 [...Michael Koziarski2007-08-164-1/+11
* Add forgotten changelog entryMichael Koziarski2007-08-141-0/+7
* Change the implementation of ActiveRecord's attribute reader and writer methods:Michael Koziarski2007-08-146-243/+249
* Make habtm respect the :select option. Closes #9207. [Aleksey Kondratenko]Michael Koziarski2007-08-073-1/+15
* Let inspect on AR classes work when the table doesn't exist. Closes #9194 [ta...Michael Koziarski2007-08-062-1/+7
* Performance enhancement for Base.exists?. CLoses #8769. [hasmanyjosh]Michael Koziarski2007-08-051-1/+1
* dont call #collect on a string when returning query cache results. Closes #9...Rick Olson2007-07-252-1/+7
* Perform a deep #dup on query cache results so that modifying activerecord att...Rick Olson2007-07-253-20/+29
* Ensure that has_many :through associations use a count query instead of loadi...Rick Olson2007-07-253-0/+15
* tiny doc patches [lifo]Rick Olson2007-07-251-2/+2
* misc doc fixes + Add ActiveResource to Rails::Info. Closes #8741, #9008, #90...Rick Olson2007-07-251-45/+45
* Refactored in use of extract_options! (closes #9079) [josh]David Heinemeier Hansson2007-07-246-13/+5
* Added :unless clause to validations (closes #8003) [monki]David Heinemeier Hansson2007-07-243-9/+105
* Fix #count on a has_many :through association so that it recognizes the :uniq...Rick Olson2007-07-203-1/+22
* Fix and properly document/test count(column_name) usage. Closes #8999 [lifofifo]Rick Olson2007-07-173-10/+26
* Remove deprecated count(conditions=nil, joins=nil) usage. Closes #8993 [lifo...Rick Olson2007-07-166-40/+16
* Change belongs_to so that the foreign_key assumption is taken from the associ...Rick Olson2007-07-165-14/+18
* Remove spurious tests from deprecated_associations_test, most of these aren't...Michael Koziarski2007-07-152-220/+4
* Make create! on a has_many :through association return the association objec...Michael Koziarski2007-07-113-2/+5
* Support for non heterogeneous arrays when serializing to xml. Unless guessabl...Tobias Lütke2007-07-092-3/+28
* Make [7169] work as expected with indented XML. Tobias Lütke2007-07-092-4/+9
* Include empty has_many/has_and_belongs_to_many associations as empty array ta...Tobias Lütke2007-07-092-7/+12
* Move from select * to select tablename.* to avoid clobbering IDs. Closes #888...Michael Koziarski2007-07-074-1/+13
* Don't call unsupported methods on associated objects when using :include, :me...Michael Koziarski2007-06-304-4/+24
* Add the type="array" moniker to has_many / has_and_belongs_to_many associatio...Tobias Lütke2007-06-273-6/+6
* Define collection singular ids method for has_many :through associations. Clo...Jeremy Kemper2007-06-273-7/+18
* Array attribute conditions work with proxied association collections. Closes ...Jeremy Kemper2007-06-273-2/+8
* Allow sweepers to be created solely for expiring after controller actions, no...David Heinemeier Hansson2007-06-261-3/+7
* Fix polymorphic has_one associations declared in an abstract class. Closes #8...Jeremy Kemper2007-06-257-12/+37
* Docfix (closes #8096)David Heinemeier Hansson2007-06-231-3/+15
* Docfix (closes #8674)David Heinemeier Hansson2007-06-231-2/+2
* Fixed validates_associated should not stop on the first error (closes #4276) ...David Heinemeier Hansson2007-06-233-5/+9
* Mock the beginning of the transaction also. References #8642.Jeremy Kemper2007-06-232-1/+2
* Rollback if commit raises an exception. Closes #8642.Jeremy Kemper2007-06-233-12/+33
* Update tests' use of fixtures for the new collections api. Closes #8726.Jeremy Kemper2007-06-226-122/+57
* Save associated records only if the association is already loaded. Closes #8713.Jeremy Kemper2007-06-213-4/+14