| Commit message (Expand) | Author | Age | Files | Lines |
* | Ensure optimistic locking handles nil #lock_version values properly. Closes ... | Rick Olson | 2007-12-15 | 1 | -1/+1 |
* | Make the Fixtures Test::Unit enhancements more supporting for double-loaded t... | Rick Olson | 2007-12-15 | 1 | -2/+13 |
* | Remove references to nonexistent :joins documentation. Closes #10498 [tpope] | Marcel Molina | 2007-12-13 | 2 | -8/+5 |
* | Document what to pass the :accept option for validates_acceptance_of when map... | Marcel Molina | 2007-12-13 | 1 | -1/+2 |
* | Fix that validates_acceptance_of still works for non-existent tables (useful ... | Rick Olson | 2007-12-12 | 1 | -2/+8 |
* | Ensure that the :uniq option for has_many :through associations retains the o... | Rick Olson | 2007-12-11 | 1 | -1/+2 |
* | Base.exists? doesn't rescue exceptions to avoid hiding SQL errors. Closes #10... | Jeremy Kemper | 2007-12-11 | 1 | -3/+2 |
* | Update destroy_all and delete_all documentation to better describe their trad... | Jeremy Kemper | 2007-12-10 | 1 | -4/+27 |
* | Document Active Record exceptions. Closes #10444. | Jeremy Kemper | 2007-12-10 | 1 | -91/+152 |
* | Remove unused ConnectionFailed exception | Jeremy Kemper | 2007-12-10 | 1 | -2/+0 |
* | Axe outdated :ar_joins commentary | Jeremy Kemper | 2007-12-10 | 1 | -7/+0 |
* | post.comments.reload returns the association rather than the result of load_t... | Jeremy Kemper | 2007-12-10 | 1 | -14/+15 |
* | Document the validates class method. Closes #10216 [Farley Knight] | Jeremy Kemper | 2007-12-10 | 1 | -1/+27 |
* | Be careful not to reference ActiveRecord if it isn't loaded, fixing rake test... | Jeremy Kemper | 2007-12-09 | 1 | -1/+6 |
* | Make ready for 2.0.1 | David Heinemeier Hansson | 2007-12-07 | 1 | -1/+1 |
* | Removed query cache rescue as it could cause code to be run twice (closes #10... | David Heinemeier Hansson | 2007-12-07 | 1 | -2/+0 |
* | Fixed that the Query Cache should just be ignored if the database is misconfi... | David Heinemeier Hansson | 2007-12-06 | 1 | -0/+2 |
* | The test task stops with a warning if you have pending migrations. Closes #10... | Jeremy Kemper | 2007-12-06 | 1 | -0/+4 |
* | Preparing for release shortly | David Heinemeier Hansson | 2007-12-06 | 1 | -3/+3 |
* | Fixed that the truncation of strings longer than 50 chars should use inspect ... | David Heinemeier Hansson | 2007-12-06 | 1 | -1/+1 |
* | Fixed that habtm associations should be able to set :select as part of their ... | David Heinemeier Hansson | 2007-12-05 | 1 | -2/+2 |
* | Document how the :include option can be used in Calculations::calculate. Clo... | Marcel Molina | 2007-12-05 | 1 | -0/+2 |
* | Fix typo in documentation for polymorphic associations w/STI. Closes #7461 [j... | Marcel Molina | 2007-12-05 | 1 | -2/+2 |
* | Reveal that the type option in migrations can be any supported column type fo... | Marcel Molina | 2007-12-05 | 1 | -1/+6 |
* | Fix typos (closes #10378) | David Heinemeier Hansson | 2007-12-05 | 5 | -5/+5 |
* | More complete documentation for find_by_sql. Closes #7912 [fearoffish] | Marcel Molina | 2007-12-05 | 1 | -3/+23 |
* | Document API for exists?'s parameter and provide examples of usage. Closes #7... | Marcel Molina | 2007-12-05 | 1 | -3/+12 |
* | Document API for create's attributes parameter and provide examples. Closes #... | Marcel Molina | 2007-12-05 | 1 | -2/+11 |
* | Documentation for find incorrectly omits the :conditions option from various ... | Marcel Molina | 2007-12-05 | 1 | -4/+4 |
* | Document options and add examples for update. Closes #7985 [fearoffish] | Marcel Molina | 2007-12-05 | 1 | -6/+10 |
* | Document options and add examples for delete. Closes #7986 [fearoffish] | Marcel Molina | 2007-12-05 | 1 | -2/+18 |
* | Document options and add examples for destroy. Closes #7988 [fearoffish] | Marcel Molina | 2007-12-05 | 1 | -2/+19 |
* | Document options and add examples for update_all. Closes #7990 [fearoffish] | Marcel Molina | 2007-12-05 | 1 | -5/+20 |
* | Document options for update_counters. Closes #8091 [fearoffish] | Marcel Molina | 2007-12-05 | 1 | -0/+12 |
* | Add documentation about the virtual attribute added by validates_confirmation... | Marcel Molina | 2007-12-05 | 1 | -3/+6 |
* | Add documentation for freeze and readonly related methods. Closes #8878 [pela... | Marcel Molina | 2007-12-05 | 1 | -4/+7 |
* | Document the timestamps schema definition method. Closes #9000 [mikong] | Marcel Molina | 2007-12-05 | 1 | -0/+2 |
* | Give examples for what tables should be called for models inside a module nam... | Marcel Molina | 2007-12-05 | 1 | -3/+12 |
* | Document the :message option for validates_associated. Closes #10357 [dylans] | Marcel Molina | 2007-12-05 | 1 | -0/+1 |
* | Document automatically generated predicate methods for attributes. Closes #10... | Marcel Molina | 2007-12-05 | 1 | -0/+14 |
* | Fix that options[:from] table names should never be quoted [DHH] | David Heinemeier Hansson | 2007-12-05 | 1 | -1/+1 |
* | Copy the cache too | David Heinemeier Hansson | 2007-12-03 | 1 | -0/+1 |
* | Added ActiveRecord::Base#becomes to turn a record into one of another class (... | David Heinemeier Hansson | 2007-12-03 | 1 | -0/+14 |
* | Fixed that to_xml should not automatically pass :procs to associations includ... | David Heinemeier Hansson | 2007-12-03 | 1 | -8/+10 |
* | Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N] | Marcel Molina | 2007-12-02 | 1 | -1/+1 |
* | Handle 8.1 default formatting. Closes #10333 [Tim Pope] | Jeremy Kemper | 2007-12-02 | 1 | -0/+3 |
* | Warn users about the race condition in validates_uniqueness_of. [Koz] | Michael Koziarski | 2007-12-01 | 1 | -0/+4 |
* | Removed documentation for the removed rollback! method on transactions and me... | Tobias Lütke | 2007-11-29 | 1 | -12/+2 |
* | Make reset return nil when using a dangling belongs_to association. Current ... | Michael Koziarski | 2007-11-29 | 1 | -1/+1 |
* | Prep for RC2 | David Heinemeier Hansson | 2007-11-29 | 1 | -1/+1 |