aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/callbacks.rb
Commit message (Expand)AuthorAgeFilesLines
* Remove `#among?` from Active SupportPrem Sichanugrist2011-04-131-1/+1
* Change Object#either? to Object#among? -- thanks to @jamesarosen for the sugg...David Heinemeier Hansson2011-04-121-1/+1
* Using Object#in? and Object#either? in various placesPrem Sichanugrist2011-04-111-1/+2
* Prevent callbacks in child classes from being executed more than once.Rolf Timmermans2011-03-131-1/+1
* adds a couple of missing AS dependenciesRolf Timmermans2011-03-121-0/+1
* Allow access to a callback event's return result from around callbacksAaron Pfeifer2011-03-081-2/+8
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-01-201-113/+116
|\
| * editing comments regarding rescuable optoin in AS callbacksNeeraj Singh2011-01-121-2/+3
| * Expand and clarify AS::Callbacks docs.John Firebaugh2011-01-091-113/+115
* | removing usesless variable assignmentsAaron Patterson2011-01-181-1/+5
|/
* expand on set_callback method to explain that inNeeraj Singh2010-12-211-0/+4
* Replace nested ifs with case/whenPavel Gorbokon2010-12-071-46/+44
* Ommit nil in method callPavel Gorbokon2010-12-071-1/+1
* bye bye extlib_inheritable_*, AS callbacks now using class_attributeJosh Kalderimis2010-11-181-9/+13
* Correct documentation that references how *_filter of action_pack are transla...Marcelo Giorgi2010-10-031-2/+2
* after_create in ActiveModel should in the order specifiedNeeraj Singh2010-09-271-1/+1
* lifecycle should be two words, life cycleJaime Iniesta2010-08-261-1/+1
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-1/+1
* adding an example of skipping a callbackNeeraj Singh2010-08-061-1/+5
* Merge remote branch 'docrails/master'Xavier Noria2010-08-051-1/+2
|\
| * documents that :terminator is a string to be eval'ed, and that it sees the re...Xavier Noria2010-08-051-1/+2
| * Revert "correcting the documentation that default to false. it does not defau...Xavier Noria2010-08-051-4/+5
| * correcting the documentation that default to false. it does not default to fa...Neeraj Singh2010-08-051-5/+4
* | Merge remote branch 'docrails/master'Xavier Noria2010-08-051-3/+3
|\|
| * Fix ActiveSupport::Callbacks' define_callbacks and ActiveSupport::Concern doc...Tom Stuart2010-08-051-3/+3
* | Merge remote branch 'docrails/master'Xavier Noria2010-08-051-1/+3
|\|
| * adding documentation to ActiveSupport::Concern ht:strictly typed for an aweso...Neeraj Singh2010-08-041-1/+3
* | Reload action_methods in AbstractController after defining new method.Piotr Sarnacki2010-08-041-1/+4
|/
* Define a convention for descendants and subclasses.José Valim2010-07-051-2/+2
* Change callbacks to automatically include DescendantsTracker and rename desce...José Valim2010-06-191-3/+7
* edit pass: the names of Rails components have a space, ie, "Active Record", n...Xavier Noria2010-06-141-1/+1
* edit pass in #define_callbacks rdocXavier Noria2010-06-141-20/+22
* adding to the :kind documentation for ActiveSupport callbacksNeeraj Singh2010-06-141-0/+5
* clearer documentation of how scope applies to ActiveSupport callbacksNeeraj Singh2010-06-141-20/+32
* Simplify and optimize callbacks superclass sync.José Valim2010-06-121-54/+21
* Eliminate the need to check for superclass changes to the callback stack each...wycats2010-06-041-3/+6
* refactor evals and adds some __FILE__ and __LINE__Santiago Pastorino2010-05-201-27/+24
* fix stack trace lines on class_evalSantiago Pastorino2010-04-091-1/+1
* moves Object#singleton_class to Kernel#singleton_class to match Ruby also the...Xavier Noria2010-04-051-1/+1
* Use Object#singleton_class instead of #metaclass. Prefer Ruby's choice.Jeremy Kemper2010-02-251-2/+2
* Merge docrailsPratik Naik2010-01-171-1/+1
* callbacks.rb needs active_support/core_ext/object/metaclass because it uses m...Xavier Noria2010-01-011-0/+1
* Simplify repair_validations on AR and make it work with new callbacks.José Valim2010-01-011-1/+1
* Fix inheritance issue with new callbacks.José Valim2010-01-011-19/+57
* Setup and teardown now use new callbacks.José Valim2009-12-301-1/+1
* Silence some trivial warnings: shadowed local vars, indentation mismatchesJeremy Kemper2009-12-281-4/+4
* Revert "Missing requires"Jeremy Kemper2009-10-141-1/+0
* Missing requiresMichael Koziarski2009-10-151-0/+1
* Extend Callbacks and Rescuable with AS concernJoshua Peek2009-10-131-3/+1
* Callbacks, DeprecatedCallbacks = NewCallbacks, CallbacksJoshua Peek2009-10-121-170/+452