Sha256: 303c9cc90f9f9eeeb41c0f9dee069fef3a7c7122a2825331140e195e4a376f25

Contents?: true

Size: 1.83 KB

Versions: 8

Compression:

Stored size: 1.83 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.
          #
          # == Examples
          #
          #   after_initialize :evaluate_given_blocks
          #
          #   after_initialize do
          #     # code
          #   end
          #
          def after_initialize(*symbols, &block)
            if block_given?
              @after_initialize_callbacks << block
            else
              @after_initialize_callbacks += symbols
            end
          end

          # Class method that accepts a block or a symbol which is called before
          # running assertions.
          #
          # == Examples
          #
          #   before_assert :evaluate_given_blocks
          #
          #   before_assert do
          #     # code
          #   end
          #
          def before_assert(*symbols, &block)
            if block_given?
              @before_assert_callbacks << block
            else
              @before_assert_callbacks += symbols
            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

8 entries across 8 versions & 1 rubygems

Version Path
remarkable-3.1.7 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.8 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.3 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.4 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.1 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.6 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.5 lib/remarkable/dsl/callbacks.rb
remarkable-3.1.2 lib/remarkable/dsl/callbacks.rb