Sha256: ce210da49dfa3be1ed952674f3fb459c842b69afeaf9713772eff602abd75806
Contents?: true
Size: 313 Bytes
Versions: 9
Compression:
Stored size: 313 Bytes
Contents
if RUBY_VERSION < '1.9.0' module Kernel # it would be defined if RUBY_VERSION < '1.9.0', see rdoc in ruby 1.9 def public_send msg, *args, &block if self.respond_to? msg self.__send__ msg, *args, &block else self.method_missing msg, *args, &block end end end end
Version data entries
9 entries across 9 versions & 1 rubygems