Sha256: d176c8a7cdc3f64b18162578a55b031710e98621d2bda6b275b3149cc0ac368f
Contents?: true
Size: 1.46 KB
Versions: 7
Compression:
Stored size: 1.46 KB
Contents
module Remarkable module DSL module Callbacks def self.included(base) #:nodoc: base.extend ClassMethods end module ClassMethods protected # Class method that accepts a block or a symbol which is called after initialization. # def after_initialize(symbol=nil, &block) if block_given? @after_initialize_callbacks << block elsif symbol @after_initialize_callbacks << symbol end end # Class method that accepts a block or a symbol which is called before assertion. # def before_assert(symbol=nil, &block) if block_given? @before_assert_callbacks << block elsif symbol @before_assert_callbacks << symbol end end end def run_after_initialize_callbacks #:nodoc: self.class.after_initialize_callbacks.each do |method| if method.is_a?(Proc) instance_eval &method elsif method.is_a?(Symbol) send(method) end end end def run_before_assert_callbacks #:nodoc: self.class.before_assert_callbacks.each do |method| if method.is_a?(Proc) instance_eval &method elsif method.is_a?(Symbol) send(method) end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems