index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
base.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
*
Dont define respond_to? lookups for primary key
David Heinemeier Hansson
2004-12-19
1
-0
/
+1
*
FormHelper should only use *_before_type_cast if they available on the model
David Heinemeier Hansson
2004-12-19
1
-0
/
+1
*
Changed the interface on AbstractAdapter to require that adapters return the ...
David Heinemeier Hansson
2004-12-19
1
-3
/
+3
*
Added respondence to *_before_type_cast for all attributes to return their st...
David Heinemeier Hansson
2004-12-19
1
-9
/
+14
*
Base#update_attribute isnt subject to validation
David Heinemeier Hansson
2004-12-18
1
-2
/
+5
*
Made Base#update_attributes actually work
David Heinemeier Hansson
2004-12-18
1
-1
/
+1
*
Added Base#update_attributes that'll accept a hash of attributes and save the...
David Heinemeier Hansson
2004-12-17
1
-1
/
+7
*
Added Base.destroy and Base.delete to remove records without holding a refere...
David Heinemeier Hansson
2004-12-17
1
-0
/
+10
*
Improving documentation...
David Heinemeier Hansson
2004-12-16
1
-0
/
+3
*
Fixed that Base#find will return an array if given an array -- regardless of ...
David Heinemeier Hansson
2004-12-15
1
-1
/
+3
*
Added a better exception for when a type column is used in a table without th...
David Heinemeier Hansson
2004-12-14
1
-2
/
+17
[next]