aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/callbacks.rb
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'master' of github.com:rails/docrailsVijay Dev2015-02-141-2/+2
|\
| * Wording fixes for `:skip_after_callbacks_if_terminated` callbacks optionVipul A M2015-01-311-2/+2
* | remove unnecessary assignment and parameter passing in ActiveSupport::Callbac...rxing2015-02-111-12/+7
* | Use keyword argumentsRafael Mendonça França2015-02-051-4/+4
* | Callback#merge merges options for a callback skip instead of a callback. Rena...Vipul A M2015-02-011-2/+2
|/
* Add config to halt callback chain on return falseclaudiob2015-01-021-1/+7
* Deprecate `false` as the way to halt AS callbacksclaudiob2015-01-021-2/+14
* Throw :abort halts default CallbackChainsclaudiob2015-01-021-5/+18
* Flatten the call stacks ActiveSupport::Callbacks produces, fix #18011.Jaroslaw Rzeszotko2014-12-271-74/+116
* Add test for `:skip_after_callbacks_if_terminated`claudiob2014-12-141-4/+5
* Prefix internal method with _Rafael Mendonça França2014-10-251-2/+2
* Replace Enumerable#reverse.each with Enumerable#reverse_eachErik Michaels-Ober2014-10-131-1/+1
* fix typo in in define_model_callbacks comment [ci skip]Ryan Selk2014-10-031-1/+1
* add notes for `define_model_callbacks` [ci skip]Kuldeep Aggarwal2014-10-031-0/+3
* Reduce allocations when running AR callbacks.Pete Higgins2014-09-281-6/+15
* 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