Sha256: 2dc9d7a0dab6467c3bfbe21951432d7819c1eb4ab82ee000cdaab2d12eb5b49c

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

module Konstructor
  module KonstructorMethodHook

    # Experimental and currently not used method_added hook approach protecting against method_added
    # overrides that are not calling super (hopefully, there is no such code in the wild).
    #
    # Since method_added hook is idempotent, there would be no harm done even if
    # overridding method_added actually had super call and Konstructor's hook would be
    # called twice as a result of this.
    def self.setup(base)
      method_added_method = base.method(:method_added)
      if method_added_method.source_location
        method_added_file_path = method_added_method.source_location.first
        return if method_added_file_path.include?('konstructor_method_hook')
      end

      base.instance_exec do
        private

        alias konstructor_super_method_added method_added

        def method_added(name)
          @konstructor ||= Konstructor.new(self)
          @konstructor.method_added_to_klass(name)
          konstructor_super_method_added(name)
        end
      end
    end

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
konstructor-0.4.1 lib/konstructor/konstructor_method_hook.rb
konstructor-0.4.0 lib/konstructor/konstructor_method_hook.rb
konstructor-0.3.0 lib/konstructor/konstructor_method_hook.rb
konstructor-0.2.0 lib/konstructor/konstructor_method_hook.rb
konstructor-0.1.0 lib/konstructor/konstructor_method_hook.rb