aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
Commit message (Expand)AuthorAgeFilesLines
* Fixed Base#update_attribute to be indifferent to whether a string or symbol i...David Heinemeier Hansson2005-01-061-0/+3
* Added Base#toggle(attribute) and Base#toggle!(attribute) that makes it easier...David Heinemeier Hansson2005-01-061-1/+33
* Fixed the last details to please DB2David Heinemeier Hansson2005-01-032-3/+9
* Fixed a YAML fixture on time coming out as an integer #415 [Dan Peterson]David Heinemeier Hansson2005-01-021-1/+1
* Added HasManyAssociation#count that works like Base#count #413 [intinig]David Heinemeier Hansson2005-01-021-0/+4
* Added find_all style to the new dynamic findersDavid Heinemeier Hansson2005-01-022-1/+9
* Added dynamic attribute-based finders as a cleaner way of getting objects by ...David Heinemeier Hansson2005-01-021-12/+22
* Restored bind arity checking #412 [bitsweat]David Heinemeier Hansson2005-01-021-2/+4
* Added that Base#find takes an optional options hash, including :conditions. B...David Heinemeier Hansson2005-01-013-14/+83
* Added the latest two tables to the DB2 schemasDavid Heinemeier Hansson2005-01-011-0/+12
* Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ru...David Heinemeier Hansson2005-01-0128-65/+241
* Added the final touches to the Microsoft SQL Server adapter by DeLynn Berry t...David Heinemeier Hansson2005-01-011-3/+9
* Fixed a bug in the Ruby/MySQL that caused binary content to be escaped badly ...David Heinemeier Hansson2005-01-017-2/+65
* Added block-style for callbacks #332 [bitsweat]David Heinemeier Hansson2005-01-011-0/+230
* Added automated optimistic locking if the field lock_version is present #384 ...David Heinemeier Hansson2004-12-317-1/+62
* Added tests for acts_as_list with scope is null #378 [Tim Bates]David Heinemeier Hansson2004-12-311-0/+6
* Fixed quoting in validates_format_of that would allow some rules to pass rega...David Heinemeier Hansson2004-12-311-1/+1
* Rearranging dependenciesDavid Heinemeier Hansson2004-12-291-122/+0
* Added Base.default_timezone accessor that determines whether to use Time.loca...David Heinemeier Hansson2004-12-281-1/+10
* Added scope option to validation_uniqueness #349 [Kent Sibilev]David Heinemeier Hansson2004-12-221-0/+19
* Added allow_nil options to validates_inclusion_of so that validation is only ...David Heinemeier Hansson2004-12-221-0/+8
* Fixed mixin test and fixtures to work with postgresql #353 [Scott Baron]David Heinemeier Hansson2004-12-222-10/+14
* Fixed that nested transactions now work by letting the outer most transaction...David Heinemeier Hansson2004-12-221-1/+1
* Fixed validates_{confirmation,acceptance}_of to only happen when the virtual ...David Heinemeier Hansson2004-12-211-4/+18
* Changed the interface on AbstractAdapter to require that adapters return the ...David Heinemeier Hansson2004-12-192-3/+7
* Added higher_item and lower_item as public methods for acts_as_list #342 [Tob...David Heinemeier Hansson2004-12-197-68/+185
* Set a high default salary within the validation rangeDavid Heinemeier Hansson2004-12-195-5/+5
* Added Developer#salary for the type testsDavid Heinemeier Hansson2004-12-195-2/+5
* Added respondence to *_before_type_cast for all attributes to return their st...David Heinemeier Hansson2004-12-194-5/+15
* Added Base.destroy and Base.delete to remove records without holding a refere...David Heinemeier Hansson2004-12-171-7/+23
* Added Base.validates_inclusion_ofDavid Heinemeier Hansson2004-12-161-14/+119
* Renamed Mixins to Acts to resemble the change from include ActiveRecord::Mixi...David Heinemeier Hansson2004-12-161-2/+2
* Added option for turning off the automated timestampsDavid Heinemeier Hansson2004-12-162-6/+12
* Added assumption that a Symbol-based scope should end in _id unless it does s...David Heinemeier Hansson2004-12-162-4/+17
* Added assumption that a Symbol-based scope should end in _id unless it does s...David Heinemeier Hansson2004-12-162-2/+1
* Added Base.validates_inclusion_of that validates whether the value of the spe...David Heinemeier Hansson2004-12-161-0/+23
* Added that Active Records will automatically record creation and/or update ti...David Heinemeier Hansson2004-12-162-56/+71
* Added Base.validates_format_of that Validates whether the value of the specif...David Heinemeier Hansson2004-12-164-6/+23
* Added Base.validates_boundries_of that delegates to add_on_boundary_breaking ...David Heinemeier Hansson2004-12-151-0/+14
* Fixed that Base#find will return an array if given an array -- regardless of ...David Heinemeier Hansson2004-12-151-1/+6
* Insignificante...David Heinemeier Hansson2004-12-151-1/+1
* Changed validate_* to validates_*_of, so validate_acceptance becomes validate...David Heinemeier Hansson2004-12-151-5/+8
* Added tree mixin and unit tests for all the mixinsDavid Heinemeier Hansson2004-12-1512-1/+211
* fixtures :models will now also attempt to include the model.rb fileDavid Heinemeier Hansson2004-12-142-4/+1
* Added a better exception for when a type column is used in a table without th...David Heinemeier Hansson2004-12-143-13/+29
* Cut dependency on dev-utils by using included breakpoint libDavid Heinemeier Hansson2004-12-131-5/+1
* Attempted to capture #286 in a unit test, but couldnt get it to failDavid Heinemeier Hansson2004-12-123-1/+13
* Options for the new validation methods are now given as a hashDavid Heinemeier Hansson2004-12-101-1/+1
* Added Base.validate_uniqueness thatv alidates whether the value of the specif...David Heinemeier Hansson2004-12-102-0/+28
* Added Base.validate_presence as an alternative to implementing validate and d...David Heinemeier Hansson2004-12-101-7/+20