| Commit message (Expand) | Author | Age | Files | Lines |
* | Added type conversion before saving a record, so string-based values like "10... | David Heinemeier Hansson | 2005-03-20 | 1 | -1/+1 |
* | Added Base.exists?(id) that'll return true if an object of the class with the... | David Heinemeier Hansson | 2005-03-17 | 1 | -0/+7 |
* | Doc fix #805 | David Heinemeier Hansson | 2005-03-14 | 1 | -1/+1 |
* | Fixed that symbols can be used on attribute assignment, like page.emails.crea... | David Heinemeier Hansson | 2005-03-10 | 1 | -0/+1 |
* | Added ActiveRecord::Base.colorize_logging to control whether to use colors in... | David Heinemeier Hansson | 2005-03-06 | 1 | -0/+6 |
* | Added MultiparameterAssignmentErrors and AttributeAssignmentError exceptions ... | David Heinemeier Hansson | 2005-03-06 | 1 | -2/+30 |
* | Fixed rails_generator to be usable without RubyGems #686 [Cristi BALAN]. Move... | David Heinemeier Hansson | 2005-03-06 | 1 | -3/+0 |
* | Finished polishing API docs | David Heinemeier Hansson | 2005-02-23 | 1 | -52/+50 |
* | Optimized the SQL used to generate has_and_belongs_to_many queries by listing... | David Heinemeier Hansson | 2005-02-22 | 1 | -1/+1 |
* | Fixed that find_by_* would fail when column names had numbers #670 [demetrius] | David Heinemeier Hansson | 2005-02-19 | 1 | -1/+1 |
* | Fixed that the dynamic finder like find_all_by_something_boolean(false) didn'... | David Heinemeier Hansson | 2005-02-18 | 1 | -1/+1 |
* | Fixed the verbosity of using the AR store | David Heinemeier Hansson | 2005-02-17 | 1 | -2/+9 |
* | Moved Active Support into its own gem | David Heinemeier Hansson | 2005-02-15 | 1 | -3/+3 |
* | Small indent | David Heinemeier Hansson | 2005-02-15 | 1 | -1/+1 |
* | Added keyword-style approach to defining the custom relational bindings #545 ... | David Heinemeier Hansson | 2005-02-07 | 1 | -1/+70 |
* | Fixed documentation snafus #575, #576, #577, #585 | David Heinemeier Hansson | 2005-02-07 | 1 | -9/+9 |
* | Fixed Base#clone for use with PostgreSQL #565 [hanson@surgery.wisc.edu] | David Heinemeier Hansson | 2005-02-07 | 1 | -4/+4 |
* | Updated documentation for serialize | David Heinemeier Hansson | 2005-01-25 | 1 | -4/+3 |
* | Added the option of supplying an array of ids and attributes to Base#update, ... | David Heinemeier Hansson | 2005-01-25 | 1 | -51/+20 |
* | Added Base.update_collection that can update an array of id/attribute pairs, ... | David Heinemeier Hansson | 2005-01-24 | 1 | -1/+42 |
* | Added that update_all calls sanitize_sql on its updates argument, so stuff li... | David Heinemeier Hansson | 2005-01-24 | 1 | -1/+1 |
* | Fixed that the dynamic finders didnt treat nil as a "IS NULL" but rather "= N... | David Heinemeier Hansson | 2005-01-24 | 1 | -1/+3 |
* | Added bind-named arrays for interpolating a group of ids or strings in condit... | David Heinemeier Hansson | 2005-01-24 | 1 | -3/+12 |
* | Added that has_and_belongs_to_many associations with additional attributes al... | David Heinemeier Hansson | 2005-01-24 | 1 | -5/+7 |
* | Fixed that records fetched with piggy-back attributes or through rich has_and... | David Heinemeier Hansson | 2005-01-24 | 1 | -1/+2 |
* | Added mass-assignment protection for the inheritance column -- regardless of ... | David Heinemeier Hansson | 2005-01-23 | 1 | -3/+8 |
* | Fixed that association proxies would fail === tests like PremiumSubscription ... | David Heinemeier Hansson | 2005-01-23 | 1 | -0/+5 |
* | Replaced === checks with is_a? checks #502, #82 [Marcel Molina] | David Heinemeier Hansson | 2005-01-20 | 1 | -1/+1 |
* | Made human_attribute_name(attribute_key_name) use Inflector.humanize | David Heinemeier Hansson | 2005-01-17 | 1 | -1/+1 |
* | Added support for associating unsaved objects #402 [Tim Bates] | David Heinemeier Hansson | 2005-01-15 | 1 | -3/+3 |
* | Refactored ActiveRecord::Base#clone to use Base#attributes #463 [atyp] | David Heinemeier Hansson | 2005-01-13 | 1 | -11/+1 |
* | Added Base#attributes that returns a hash of all the attributes with their na... | David Heinemeier Hansson | 2005-01-11 | 1 | -0/+12 |
* | Added Base#reload that reloads the attributes of an object from the database ... | David Heinemeier Hansson | 2005-01-10 | 1 | -1/+8 |
* | Fixed Base#update_attribute to be indifferent to whether a string or symbol i... | David Heinemeier Hansson | 2005-01-06 | 1 | -1/+1 |
* | Added Base#toggle(attribute) and Base#toggle!(attribute) that makes it easier... | David Heinemeier Hansson | 2005-01-06 | 1 | -6/+41 |
* | Fixed that the overwritten respond_to? method didn't take two parameters like... | David Heinemeier Hansson | 2005-01-03 | 1 | -2/+2 |
* | Added the possibility of specifying the remaining options for find_first and ... | David Heinemeier Hansson | 2005-01-02 | 1 | -8/+11 |
* | Added find_all style to the new dynamic finders | David Heinemeier Hansson | 2005-01-02 | 1 | -4/+9 |
* | Added dynamic attribute-based finders as a cleaner way of getting objects by ... | David Heinemeier Hansson | 2005-01-02 | 1 | -0/+25 |
* | Restored bind arity checking #412 [bitsweat] | David Heinemeier Hansson | 2005-01-02 | 1 | -7/+8 |
* | Added that Base#find takes an optional options hash, including :conditions. B... | David Heinemeier Hansson | 2005-01-01 | 1 | -64/+68 |
* | Added a db2 adapter that only depends on the Ruby/DB2 bindings (http://raa.ru... | David Heinemeier Hansson | 2005-01-01 | 1 | -3/+3 |
* | Added automated optimistic locking if the field lock_version is present #384 ... | David Heinemeier Hansson | 2004-12-31 | 1 | -0/+2 |
* | Switch dispatcher to use the new shared Dependencies approach | David Heinemeier Hansson | 2004-12-29 | 1 | -9/+0 |
* | Added Base.default_timezone accessor that determines whether to use Time.loca... | David Heinemeier Hansson | 2004-12-28 | 1 | -0/+5 |
* | Added the possibility for adapters to overwrite add_limit! to implement a dif... | David Heinemeier Hansson | 2004-12-28 | 1 | -3/+5 |
* | Fixed that Base.table_name would expect a parameter when used in has_and_belo... | David Heinemeier Hansson | 2004-12-22 | 1 | -7/+2 |
* | Switched strategy on the id_before_type_cast problem and just did an explicit... | David Heinemeier Hansson | 2004-12-20 | 1 | -1/+5 |
* | Pulling attributes_from_column_definition should set the primary id to nil in... | David Heinemeier Hansson | 2004-12-19 | 1 | -1/+1 |
* | Scrap that | David Heinemeier Hansson | 2004-12-19 | 1 | -1/+0 |