Sha256: 9be0c5bad95139bf58daa7e14a1bcc256a589006de02de521c77b26d070a3b1e
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
module Konstructor module KonstructorMethodHook #:nodoc: # Experimental and currently not used <code>method_added</code> # 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
konstructor-0.4.3 | lib/konstructor/konstructor_method_hook.rb |