1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/ext/stringio
卜部昌平 43b95bafd5
delete deprecated IO-like methods
This commit deletes
{IO,ARGF,StringIO,Zib::GZipReader}#{bytes,chars,lines,codepoints}, which
have been deprecated since c47c095b97.

Note that String also has those methods.  They are neither depreacted
nor deleted because they are not aliases of counterpart each_something.
2020-12-03 12:47:51 +09:00
..
depend sed -i '/rmodule.h/d' 2020-08-27 16:42:06 +09:00
extconf.rb [ruby/stringio] Added support for older versions 2019-08-14 11:20:58 +09:00
README.md
stringio.c delete deprecated IO-like methods 2020-12-03 12:47:51 +09:00
stringio.gemspec Update the license for the default gems to dual licenses 2020-08-18 20:26:39 +09:00

StringIO

Pseudo IO class from/to String.

This library is based on MoonWolf version written in Ruby. Thanks a lot.

Differences to IO

  • fileno raises NotImplementedError.
  • encoding conversion is not implemented, and ignored silently.