Sha256: 82a29a052752476fe21427cd4dd1362ba717275d9bc4ee6c65392fbbaac6adbc
Contents?: true
Size: 298 Bytes
Versions: 73
Compression:
Stored size: 298 Bytes
Contents
unless Kernel.method_defined? :public_method module Kernel def public_method(meth) if respond_to?(meth) && !protected_methods.include?(meth.to_s) method(meth) else raise NameError, "undefined method `#{meth}' for class `#{self.class}'" end end end end
Version data entries
73 entries across 73 versions & 5 rubygems