Sha256: ffed533a8cf75e96a802c79c9d1de50aaef1e7a99a06cf9c17956043ed4ada7c
Contents?: true
Size: 305 Bytes
Versions: 80
Compression:
Stored size: 305 Bytes
Contents
unless STDIN.respond_to?(:getbyte) class IO alias_method :getbyte, :getc end class StringIO alias_method :getbyte, :getc end end unless "".respond_to?(:each_line) # Not a perfect translation, but sufficient for our needs. class String alias_method :each_line, :each end end
Version data entries
80 entries across 79 versions & 11 rubygems