aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
Commit message (Expand)AuthorAgeFilesLines
...
* Support aggregations in finder conditions. Closes #10572.Jeremy Kemper2008-01-191-0/+56
* More thoroughly quote table names. Exposes some issues with sqlite2 adapter. ...Jeremy Kemper2008-01-051-1/+1
* pdate_all ignores scoped :order and :limit, so post.comments.update_all doesn...Jeremy Kemper2008-01-041-2/+2
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-031-0/+16
* Added by parameter to increment, decrement, and their bang varieties so you c...David Heinemeier Hansson2008-01-031-10/+10
* Optimize ActiveRecord::Base#exists? to use #select_all instead of #find. Clo...Rick Olson2008-01-021-2/+8
* Use extract_options! rather than Hash test + pop. Closes #10628 [ssoroka]Jeremy Kemper2007-12-281-1/+1
* Ruby 1.9 compat: don't modify iterator target within blockJeremy Kemper2007-12-271-3/+6
* Ruby 1.9 compat: fix warnings, shadowed block vars, and unitialized instance ...Jeremy Kemper2007-12-221-14/+18
* Benchmark logs for any level below or equal to the one specified, rather than...Jeremy Kemper2007-12-211-4/+4
* Ruby 1.9 compat: move from the deprecated Base64 module to ActiveSupport::Bas...Jeremy Kemper2007-12-181-1/+0
* Remove references to nonexistent :joins documentation. Closes #10498 [tpope]Marcel Molina2007-12-131-4/+3
* Base.exists? doesn't rescue exceptions to avoid hiding SQL errors. Closes #10...Jeremy Kemper2007-12-111-3/+2
* Update destroy_all and delete_all documentation to better describe their trad...Jeremy Kemper2007-12-101-4/+27
* Document Active Record exceptions. Closes #10444.Jeremy Kemper2007-12-101-91/+152
* Remove unused ConnectionFailed exceptionJeremy Kemper2007-12-101-2/+0
* Axe outdated :ar_joins commentaryJeremy Kemper2007-12-101-7/+0
* Fixed that the truncation of strings longer than 50 chars should use inspect ...David Heinemeier Hansson2007-12-061-1/+1
* More complete documentation for find_by_sql. Closes #7912 [fearoffish]Marcel Molina2007-12-051-3/+23
* Document API for exists?'s parameter and provide examples of usage. Closes #7...Marcel Molina2007-12-051-3/+12
* Document API for create's attributes parameter and provide examples. Closes #...Marcel Molina2007-12-051-2/+11
* Documentation for find incorrectly omits the :conditions option from various ...Marcel Molina2007-12-051-4/+4
* Document options and add examples for update. Closes #7985 [fearoffish]Marcel Molina2007-12-051-6/+10
* Document options and add examples for delete. Closes #7986 [fearoffish]Marcel Molina2007-12-051-2/+18
* Document options and add examples for destroy. Closes #7988 [fearoffish]Marcel Molina2007-12-051-2/+19
* Document options and add examples for update_all. Closes #7990 [fearoffish]Marcel Molina2007-12-051-5/+20
* Document options for update_counters. Closes #8091 [fearoffish]Marcel Molina2007-12-051-0/+12
* Add documentation for freeze and readonly related methods. Closes #8878 [pela...Marcel Molina2007-12-051-4/+7
* Give examples for what tables should be called for models inside a module nam...Marcel Molina2007-12-051-3/+12
* Document automatically generated predicate methods for attributes. Closes #10...Marcel Molina2007-12-051-0/+14
* Copy the cache tooDavid Heinemeier Hansson2007-12-031-0/+1
* Added ActiveRecord::Base#becomes to turn a record into one of another class (...David Heinemeier Hansson2007-12-031-0/+14
* attr_protected and _accessible use sets of strings instead of arrays of symbo...Jeremy Kemper2007-11-281-4/+4
* attr_readonly uses a set of strings instead of an array of symbols internally...Jeremy Kemper2007-11-281-2/+2
* Kill the whiny_protected_attributes setting and kill the exception raised. In...David Heinemeier Hansson2007-11-091-13/+1
* Smattering of grammatical fixes to documentation. Closes #10083 [BobSilva]Marcel Molina2007-11-081-27/+35
* Address shortcomings of changeset [8054] [protocool]David Heinemeier Hansson2007-11-071-31/+12
* Enhance explanation with more examples for attr_accessible macro. Closes #809...Marcel Molina2007-11-061-12/+19
* Introduce finder :joins with associations. Same :include syntax but with inne...Jeremy Kemper2007-10-291-4/+30
* Add docs explaining how to protect all attributes using attr_accessible with ...Marcel Molina2007-10-261-1/+17
* Use VALID_FIND_OPTIONS when resolving :find scoping rather than hard coding t...Marcel Molina2007-10-261-1/+1
* Qualified column names work in hash conditions, like :conditions => { 'commen...Jeremy Kemper2007-10-161-1/+13
* Quote table names. Defaults to column quoting. Closes #4593.Jeremy Kemper2007-10-161-11/+15
* Factor out checks for duplicable objects. Closes #9333.Jeremy Kemper2007-10-151-7/+1
* find_and_(initialize|create)_by methods can now properly initialize protected...Tobias Lütke2007-10-101-7/+16
* Make sure AR::Base#clone handles attr changes made in after_initialize hooks....Michael Koziarski2007-10-081-3/+3
* Raise ProtectedAttributeAssignmentError in development and test environments ...Jeremy Kemper2007-10-071-14/+34
* Send the correct INSERT statement when dealing with objects with only primary...Michael Koziarski2007-10-061-6/+13
* Fix that ActiveRecord would create attribute methods and override custom attr...Rick Olson2007-10-061-3/+6
* Cache the descends_from_activerecord? call to speed up query generation. [ska...Michael Koziarski2007-10-031-3/+8