# File lib/adhearsion/core_extensions/publishable.rb, line 58
      def method_added(sym)
        return if not @capture
        if sym.to_s !~ /method_added/
          @published_instance_methods ||= []
          @published_instance_methods << [sym, @interface]
        end
      end