aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/callbacks.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* | Simplify AR configuration code.Jon Leighton2012-06-151-24/+0
|/ | | | | Get rid of ActiveModel::Configuration, make better use of ActiveSupport::Concern + class_attribute, etc.
* Remove Array.wrap calls in ActiveRecordRafael Mendonça França2012-01-061-2/+0
|
* Support configuration on ActiveRecord::Model.Jon Leighton2011-12-281-12/+39
| | | | | | | | | | | | | | | The problem: We need to be able to specify configuration in a way that can be inherited to models that include ActiveRecord::Model. So it is no longer sufficient to put 'top level' config on ActiveRecord::Base, but we do want configuration specified on ActiveRecord::Base and descendants to continue to work. So we need something like class_attribute that can be defined on a module but that is inherited when ActiveRecord::Model is included. The solution: added ActiveModel::Configuration module which provides a config_attribute macro. It's a bit specific hence I am not putting this in Active Support or making it a 'public API' at present.
* Added back the Callback debugging section by interrogating the _*_callbacks ↵ozzyaaron2011-03-291-0/+18
| | | | method
* Active Record typos.R.T. Lechow2011-03-051-1/+1
|
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-02-021-10/+6
|\
| * FIX not using _on_create or _on_update callbacks only _create and _updatePaco Guzman2011-02-011-1/+1
| |
| * Correct docs for after_find and after_initializeJesse Storimer2011-01-281-9/+5
| |
* | Use run_callbacks; the generated _run_<name>_callbacks method is not a ↵John Firebaugh2011-01-311-5/+5
|/ | | | | | public interface. Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Remove doc for debugging callbacks. Methods don't exist in Rails masterRafael Mendonça França2010-10-131-10/+0
|
* Cleanup deprecation warnings in active recordCarlos Antonio da Silva2010-09-061-17/+0
| | | | Signed-off-by: José Valim <jose.valim@gmail.com>
* lifecycle should be two words, life cycleJaime Iniesta2010-08-261-2/+2
|
* fisting after_rollback and after commit callbacksAaron Patterson2010-08-201-1/+1
|
* Deletes trailing whitespaces (over text files only find * -type f -exec sed ↵Santiago Pastorino2010-08-141-24/+24
| | | | 's/[ \t]*$//' -i {} \;)
* fixing documentationNeeraj Singh2010-08-031-2/+2
|
* Merge remote branch 'docrails/master' into 3-0-stableXavier Noria2010-08-031-31/+35
|\
| * ensuring that description does not exceed 100 columnsNeeraj Singh2010-08-021-31/+35
| |
* | Add an internal (private API) after_touch callback. [#5271 state:resolved]José Valim2010-08-021-2/+6
|/
* Merge remote branch 'rails/master'Xavier Noria2010-06-201-25/+2
|\ | | | | | | | | Conflicts: actionpack/lib/abstract_controller/base.rb
| * ActiveModel::Validations::Callbacks should not be required by default.José Valim2010-06-191-8/+2
| |
| * moving before_validation and after_validation functionality from ↵Neeraj Singh2010-06-191-20/+3
| | | | | | | | | | | | | | | | ActiveRecord to ActiveModel [#4653 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* | Adds title and basic description where needed.Rizwan Reza2010-06-151-0/+2
|/
* update docs before_validation_on_create => before_validation(:on => :create)Santiago Pastorino and José Ignacio Costa2010-06-071-1/+1
|
* eliminate alias_method_chain from ActiveRecordwycats2010-05-091-32/+16
|
* say something about after_(commit|rollback) in callbacks.rb, the fact that ↵Xavier Noria2010-05-021-1/+6
| | | | their implementation is elsewhere is not important for rdoc purposes
* Avoid deprecated String#to_a by using Array.wrap(...) instead of Array(...)Jeremy Kemper2010-04-101-2/+4
|
* Add debugging documentation for _callback_chain to ActiveRecord::Callbackchrisfinne2010-03-261-0/+10
| | | | Signed-off-by: Rizwan Reza <rizwanreza@gmail.com>
* Ensure deprecated validate methods are invoked when they are private [#3214 ↵José Valim2010-01-181-1/+1
| | | | status:resolved]
* Ensure before_validation and after_validation accepts :on as option.José Valim2010-01-061-2/+20
|
* Get rid of DeprecatedCallbacks in ActiveRecord::Associations and finally ↵José Valim2009-12-301-1/+1
| | | | remove it.
* Move ActiveRecord callbacks implementation to ActiveModel and make use of it.José Valim2009-12-281-54/+5
| | | | Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local>
* Callbacks, DeprecatedCallbacks = NewCallbacks, CallbacksJoshua Peek2009-10-121-2/+2
|
* Refactor new callbacks and AR implementation.José Valim2009-09-081-59/+20
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Changed ActiveRecord to use new callbacks and speed up observers by only ↵José Valim2009-09-081-129/+126
| | | | | | notifying events that are actually being consumed. Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Fix warnings in AMoJoshua Peek2009-09-051-1/+1
|
* Merge docrailsPratik Naik2009-07-251-1/+17
|
* Add wrap_with_notifications helper to AMo observingJoshua Peek2009-07-201-1/+1
|
* Move observing notify helper into AMoJoshua Peek2009-06-111-5/+0
|
* Break up DependencyModule's dual function of providing a "depend_on" DSL and ↵Joshua Peek2009-05-281-1/+1
| | | | "included" block DSL into separate modules. But, unify both approaches under AS::Concern.
* Use DependencyModule for included hooks in ActiveRecordBryan Helmkamp2009-05-111-5/+7
|
* Merge with docrailsPratik Naik2009-02-241-5/+33
|
* Merge docrailsPratik Naik2009-01-181-1/+1
|
* Fixed broken after_save callback; was being called when before_create was ↵Michael Lovitt2009-01-161-2/+3
| | | | | | | canceled or before_update was canceled Signed-off-by: Michael Koziarski <michael@koziarski.com> [#1735 state:committed]
* Merge docrailsPratik Naik2008-10-161-2/+3
|
* Merge docrailsPratik Naik2008-09-031-2/+8
|
* Rollback the transaction when a before_* callback returns false.Xavier Noria2008-08-241-0/+12
| | | | | | | Previously this would have committed the transaction but not carried out save or destroy operation. [#891 state:committed] Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Fix file permissionsTarmo Tänav2008-07-311-0/+0
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>
* Merge with docrails.Pratik Naik2008-07-161-1/+1
|
* Changing order of equality because comparing certain objects with false ↵Lucas Carlson2008-07-021-2/+2
| | | | | | | | | | | | | raises an error. >> require 'md5' => true >> MD5.new("Asds") == false TypeError: can't convert false into String from (irb):2:in `==' from (irb):2 >> false == MD5.new("Asds") => false
* Callbacks fire before notifying observers [#230 state:resolved]Craig Demyanovich2008-06-031-2/+2
| | | | Signed-off-by: Joshua Peek <josh@joshpeek.com>