aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
Commit message (Expand)AuthorAgeFilesLines
* Changed validate_* to validates_*_of, so validate_acceptance becomes validate...David Heinemeier Hansson2004-12-153-71/+41
* Added tree mixin and unit tests for all the mixinsDavid Heinemeier Hansson2004-12-1515-16/+271
* Wrapped multi-step operations in transactionsDavid Heinemeier Hansson2004-12-141-16/+22
* fixtures :models will now also attempt to include the model.rb fileDavid Heinemeier Hansson2004-12-143-4/+12
* Fixed that has_and_belongs_to_many would generate bad sql when naming convent...David Heinemeier Hansson2004-12-142-4/+6
* Added a better exception for when a type column is used in a table without th...David Heinemeier Hansson2004-12-146-16/+59
* Cut dependency on dev-utils by using included breakpoint libDavid Heinemeier Hansson2004-12-131-5/+1
* Extended no inclusion of messages if theyre nil to baseDavid Heinemeier Hansson2004-12-131-1/+3
* Fixed bug with reloading associationsDavid Heinemeier Hansson2004-12-131-1/+1
* Moved methods into the main body as only wiring is needed in append_featuresDavid Heinemeier Hansson2004-12-131-9/+7
* Fixed that every successive call on the sqlite adapter prepended RAILS_ROOT a...David Heinemeier Hansson2004-12-121-1/+1
* Fixed a pattern for module loadingDavid Heinemeier Hansson2004-12-121-0/+2
* Added the possibility of marking fields as being in error without adding a me...David Heinemeier Hansson2004-12-121-2/+2
* Attempted to capture #286 in a unit test, but couldnt get it to failDavid Heinemeier Hansson2004-12-123-1/+13
* Added methods for resetting the cached information on classes that you want t...David Heinemeier Hansson2004-12-121-5/+10
* No longer necessary to guard against reincludes with the new reset of inherit...David Heinemeier Hansson2004-12-122-2/+2
* Moved require_association to associations.rb and added methods for resetting ...David Heinemeier Hansson2004-12-123-31/+28
* Options for the new validation methods are now given as a hashDavid Heinemeier Hansson2004-12-103-12/+28
* Added Base.validate_uniqueness thatv alidates whether the value of the specif...David Heinemeier Hansson2004-12-106-6/+73
* Added Base.validate_presence as an alternative to implementing validate and d...David Heinemeier Hansson2004-12-103-24/+81
* Tidied up Fixtures for better readability and some error checking [bitsweat]David Heinemeier Hansson2004-12-092-42/+61
* Fixed TIMESTAMP columns broken due to TIME handling patchDavid Heinemeier Hansson2004-12-091-11/+15
* Fixed Base.errors to be indifferent as to whether strings or symbols are used.David Heinemeier Hansson2004-12-093-15/+47
* Added Base.validate_confirmation that encapsulates the pattern of wanting to ...David Heinemeier Hansson2004-12-093-9/+51
* Changed the Proc for a string to avoid repetition problemsDavid Heinemeier Hansson2004-12-091-5/+3
* Added Base.validate_confirmation that encapsulates the pattern of wanting to ...David Heinemeier Hansson2004-12-093-4/+70
* Added validation macros to make the stackable just like the lifecycle callbacksDavid Heinemeier Hansson2004-12-093-2/+69
* A fix that actually works...David Heinemeier Hansson2004-12-081-1/+1
* Callbacks added to the inheritable que should only be called once -- even as ...David Heinemeier Hansson2004-12-081-1/+1
* scope_condition defaults to 1 on list mixinDavid Heinemeier Hansson2004-12-081-3/+3
* Added mixins to install.rbDavid Heinemeier Hansson2004-12-081-1/+3
* Cleaned up the class_eval stuff in the new mixins a bitDavid Heinemeier Hansson2004-12-082-9/+8
* Forgot to include Mixins::Touch by defaultDavid Heinemeier Hansson2004-12-081-0/+1
* Added ActiveRecord::Mixins::Touch that will record creation and update times ...David Heinemeier Hansson2004-12-082-1/+50
* Added ActiveRecord::Mixins::List that can decorates an existing class with me...David Heinemeier Hansson2004-12-082-1/+16
* Renamed from ListMixin and mixins/list_mixin.rb to Mixins::List and mixin/lis...David Heinemeier Hansson2004-12-083-154/+157
* Unofficially added ListMixinDavid Heinemeier Hansson2004-12-081-0/+154
* Added named bind-style variable interpolation #281 [Michael Koziarski]David Heinemeier Hansson2004-12-083-6/+60
* Added the option for sanitizing find_by_sql and the offset parts in regular f...David Heinemeier Hansson2004-12-073-5/+50
* Fixed value quoting in all generated SQL statements, so that integers are not...David Heinemeier Hansson2004-12-0710-51/+71
* Fixed has_and_belongs_to_many guessing of foreign key so that keys are genera...David Heinemeier Hansson2004-12-072-1/+4
* Added counter_sql option for has_many associations [bitsweat]David Heinemeier Hansson2004-12-076-43/+69
* Fixed that methods wrapped in callbacks still return their original result #2...David Heinemeier Hansson2004-12-072-25/+32
* Fixed the Inflector to handle the movie/movies pair correctly #261 [Scott Baron]David Heinemeier Hansson2004-12-073-0/+4
* Documentation bugsDavid Heinemeier Hansson2004-12-071-2/+2
* Added bind-style variable interpolation for the condition arrays that uses th...David Heinemeier Hansson2004-12-073-11/+32
* Added CSV format for fixtures #272 [what-a-day]David Heinemeier Hansson2004-12-072-36/+145
* Fixed fixtures using primary key fields called something else than "id" #270 ...David Heinemeier Hansson2004-12-062-1/+3
* Added extra words of caution for guarding against SQL-injection attacksDavid Heinemeier Hansson2004-12-061-3/+7
* Dont include the primary key in updates -- its unneeded and SQL Server chokes...David Heinemeier Hansson2004-12-011-3/+3