| Commit message (Expand) | Author | Age | Files | Lines |
* | Doc fix | David Heinemeier Hansson | 2006-04-18 | 1 | -1/+1 |
* | Fixed that that multiparameter assignment doesn't work with aggregations (clo... | David Heinemeier Hansson | 2006-04-06 | 1 | -1/+1 |
* | Fix type_name_with_module to handle type names that begin with '::'. Closes #... | Nicholas Seckar | 2006-04-06 | 1 | -1/+1 |
* | Stop respond_to? from throwing when instances are created 'irregularly' i.e. ... | Michael Koziarski | 2006-04-06 | 1 | -1/+3 |
* | Changed those private ActiveRecord methods to take optional third argument :a... | Rick Olson | 2006-04-03 | 1 | -7/+8 |
* | Abort broken tighter resolution suppression. Closes #4431 | Nicholas Seckar | 2006-04-03 | 1 | -2/+0 |
* | Private ActiveRecord methods add_limit, add_joins, and add_conditions take an... | Rick Olson | 2006-04-01 | 1 | -4/+9 |
* | Doc fix (closes #4515) | David Heinemeier Hansson | 2006-04-01 | 1 | -2/+2 |
* | Fixed that records returned from has_and_belongs_to_many associations with ad... | David Heinemeier Hansson | 2006-04-01 | 1 | -1/+1 |
* | dont merge when you can update (closes #4529) [skaes] | David Heinemeier Hansson | 2006-04-01 | 1 | -2/+2 |
* | Do not implicitly mark recordss of has_many :through as readonly but do mark ... | Marcel Molina | 2006-03-30 | 1 | -2/+2 |
* | to_xml documentation [DHH, Koz] | Michael Koziarski | 2006-03-28 | 1 | -1/+61 |
* | Fixed documentation | David Heinemeier Hansson | 2006-03-28 | 1 | -21/+23 |
* | Replace 'rescue Object' with a finer grained rescue. Closes #4431 | Nicholas Seckar | 2006-03-28 | 1 | -2/+5 |
* | Making ActiveRecord faster [skaes] | David Heinemeier Hansson | 2006-03-27 | 1 | -81/+135 |
* | Add support for :include to with_scope [andrew@redlinesoftware.com] | Michael Koziarski | 2006-03-27 | 1 | -5/+25 |
* | Fixed issue that kept :select options from being scoped [Rick] | Rick Olson | 2006-03-26 | 1 | -2/+2 |
* | Fix bug introduced by changeset 3679 which caused custom attribute? methods t... | David Heinemeier Hansson | 2006-03-20 | 1 | -7/+19 |
* | Added Base.abstract_class? that marks which classes are not part of the Activ... | Rick Olson | 2006-03-16 | 1 | -7/+15 |
* | make save! return true on success[johan@johansorensen.com]. Closes #4173 | Michael Koziarski | 2006-03-15 | 1 | -1/+1 |
* | Dynamically set allow_concurrency. Closes #4044. | Jeremy Kemper | 2006-03-13 | 1 | -9/+16 |
* | Passing comment | David Heinemeier Hansson | 2006-03-10 | 1 | -1/+1 |
* | Added options to control the :only/:except for included associations on Base#... | David Heinemeier Hansson | 2006-03-10 | 1 | -7/+11 |
* | Added association inclusion in to_xml [DHH] | David Heinemeier Hansson | 2006-03-10 | 1 | -10/+41 |
* | Fixed to_xml across the board to use nice indention, better skip_attributes w... | David Heinemeier Hansson | 2006-03-09 | 1 | -0/+14 |
* | Doc fixes | David Heinemeier Hansson | 2006-03-05 | 1 | -1/+4 |
* | Doc fixes | David Heinemeier Hansson | 2006-03-05 | 1 | -3/+4 |
* | Revert allow_concurrency change for better testing. Retrieve_connection in tw... | Jeremy Kemper | 2006-03-02 | 1 | -1/+1 |
* | CHANGED DEFAULT: set ActiveRecord::Base.allow_concurrency to false. Most AR ... | Jeremy Kemper | 2006-03-01 | 1 | -4/+4 |
* | Fixed that Base.save should always return false if the save didn't succeed, i... | David Heinemeier Hansson | 2006-02-28 | 1 | -1/+13 |
* | Define attribute query methods to avoid method_missing calls. Closes #3677. | Jeremy Kemper | 2006-02-27 | 1 | -5/+8 |
* | CHANGED DEFAULT: ActiveRecord::Base.schema_format is now :ruby by default ins... | David Heinemeier Hansson | 2006-02-27 | 1 | -1/+1 |
* | Added support for nested scopes (closes #3407) [anna@wota.jp] | David Heinemeier Hansson | 2006-02-26 | 1 | -23/+66 |
* | Aesthetics, baby | David Heinemeier Hansson | 2006-02-26 | 1 | -3/+5 |
* | Updated docs (closes #3799) [ruby@bobsilva.com] | David Heinemeier Hansson | 2006-02-25 | 1 | -0/+10 |
* | Added calculations: Base.count, Base.average, Base.sum, Base.minimum, Base.ma... | David Heinemeier Hansson | 2006-02-25 | 1 | -55/+0 |
* | Reflections don't attempt to resolve module nesting of association classes. S... | Jeremy Kemper | 2006-02-22 | 1 | -5/+7 |
* | Added :count option to pagination that'll make it possible for the ActiveReco... | David Heinemeier Hansson | 2006-02-20 | 1 | -1/+1 |
* | * Fix pagination problems when using include | Michael Koziarski | 2006-02-09 | 1 | -7/+53 |
* | Just go with Subclasses instead of OnlySubclasses | David Heinemeier Hansson | 2006-02-04 | 1 | -4/+2 |
* | Remove definition of reloadable? from ActiveRecord::Base to make way for new ... | Nicholas Seckar | 2006-02-02 | 1 | -8/+0 |
* | Add Reloadable::OnlySubclasses which handles the common case where a base cla... | Nicholas Seckar | 2006-02-02 | 1 | -2/+3 |
* | Added reusable reloading support through the inclusion of the Relodable modul... | David Heinemeier Hansson | 2006-01-29 | 1 | -0/+1 |
* | Make dynamic finders honor additional passed in :conditions. Closes #3569. | Marcel Molina | 2006-01-22 | 1 | -2/+9 |
* | Add AR::Base.base_class for querying the ancestor AR::Base subclass [Jamis Buck] | Jamis Buck | 2006-01-20 | 1 | -4/+16 |
* | Don't alter the Hash passed to attributes=, closes #3385 | Michael Koziarski | 2006-01-14 | 1 | -2/+3 |
* | Fixed that .with_scope imposed create parameters bypass attr_protected | Tobias Lütke | 2006-01-10 | 1 | -2/+3 |
* | Don't raise an exception when there are more keys than there are named bind v... | Marcel Molina | 2006-01-05 | 1 | -1/+0 |
* | Sanitize scoped conditions. | Marcel Molina | 2006-01-04 | 1 | -1/+1 |
* | ActiveRecord::Base.schema_ignore_tables => ActiveRecord::SchemaDumper.ignore_... | Tobias Lütke | 2005-12-24 | 1 | -6/+0 |