aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/callbacks.rb
Commit message (Expand)AuthorAgeFilesLines
* Fix ActiveSupport::Callbacks #set_callback docs.Nick Pellant2014-07-071-1/+1
* :fire: these are lambdas now [ci skip]Godfrey Chan2014-07-031-9/+2
* Tiny documentation fixes [ci skip]Robin Dupret2014-06-291-1/+1
* Update documentation for run_callbacksjamesprior2014-06-271-1/+2
* remove deprecation warningeileencodes2014-05-131-6/+0
* flip conditional to use if/else instead of unless/elseeileencodes2014-05-121-3/+3
* Merge pull request #11411 from dscataglini/masterAaron Patterson2014-04-091-6/+12
|\
| * private method doesn't work for singleton methods defined this wayDiego Scataglini2013-07-121-6/+12
* | Fix few typos in the documentation [ci skip]Robin Dupret2013-12-211-1/+1
* | Merge pull request #13287 from aayushkhandelwal11/typo_rectifiedYves Senn2013-12-111-3/+3
|\ \
| * | typos rectified lifecycle => life cycleAayush khandelwal2013-12-121-3/+3
* | | typos rectified [ci skip]Aayush khandelwal2013-12-121-1/+1
|/ /
* / Fix typo in set_callback docs. [ci skip]Gilad Zohari2013-09-061-1/+1
|/
* Revert "remove string based terminators for `ActiveSupport::Callbacks`."Yves Senn2013-07-051-0/+6
* remove string based terminators for `ActiveSupport::Callbacks`.Yves Senn2013-07-051-6/+0
* Further clean-up of ActiveSupport::CallbacksGenadi Samokovarov2013-07-011-10/+9
* unified the param names across all callbacks manipulation methodsSteven Yang2013-07-011-10/+10
* updated AS:Callbacks doc for terminator option in define_callbacks methodSteven Yang2013-06-301-3/+4
* remove some evals from callback conditionalsAaron Patterson2013-06-111-0/+10
* Fixed typos in activesupport [ci skip]Prathamesh Sonpatki2013-06-091-3/+3
* "normalize_callback_params" doesn't require name paramVipul A M2013-05-171-3/+3
* Revert "just call the class method since we know the callbacks are stored at ...Aaron Patterson2013-05-161-2/+1
* just call the class method since we know the callbacks are stored at theAaron Patterson2013-05-151-1/+2
* remove dead codeAaron Patterson2013-05-151-23/+4
* remove deprecation noticesAaron Patterson2013-05-151-10/+0
* stop keeping a reference to the options hashAaron Patterson2013-05-151-12/+7
* conditions are guaranteed to be arrays by initializeAaron Patterson2013-05-151-2/+2
* simplify the condions lambda generationAaron Patterson2013-05-151-12/+2
* use unless instead of if!Aaron Patterson2013-05-151-3/+3
* only dup the options once, the Callback object does not mutate themAaron Patterson2013-05-141-2/+2
* make the compile method thread safeAaron Patterson2013-05-141-5/+7
* use inject rather than multiple assignmentsAaron Patterson2013-05-141-4/+2
* deprecating string based terminatorsAaron Patterson2013-05-141-4/+11
* halting lambda must be instance execedAaron Patterson2013-05-141-2/+2
* fixing arity2 testAaron Patterson2013-05-141-3/+8
* fix shadowed variable warningsAaron Patterson2013-05-141-5/+5
* polymorphic around callbacksAaron Patterson2013-05-141-15/+79
* polymorphic after filterAaron Patterson2013-05-141-25/+70
* rename terminal to halting, try to keep naming consistentAaron Patterson2013-05-141-4/+4
* push the before filter lambdas to factory methodsAaron Patterson2013-05-141-40/+58
* polymorphic before callbacksAaron Patterson2013-05-141-16/+54
* use a singleton end nodeAaron Patterson2013-05-131-5/+10
* Revert "we never pass blocks, so remove this"Aaron Patterson2013-05-131-1/+1
* if there is nothing to compile, then do not bother compilingAaron Patterson2013-05-131-3/+8
* Arrays are no longer supportedAaron Patterson2013-05-131-4/+0
* we never pass blocks, so remove thisAaron Patterson2013-05-131-1/+1
* raise an argument error if the filter arity is greater than 1Aaron Patterson2013-05-131-12/+6
* Merge branch 'master' into normalizecbAaron Patterson2013-05-131-20/+34
|\
| * extract getting an setting callbacks to methodsAaron Patterson2013-05-131-15/+22
| * call extracted method from callback manipulation methodsAaron Patterson2013-05-131-6/+8