Flowdock
_define_before_model_callback(klass, callback) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activemodel/lib/active_model/callbacks.rb, line 107
    def _define_before_model_callback(klass, callback) #:nodoc:
      klass.class_eval         def self.before_#{callback}(*args, &block)          set_callback(:#{callback}, :before, *args, &block)        end, __FILE__, __LINE__ + 1
    end
Register or log in to add new notes.