ext/stringio/README.md: update [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55326 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-06-08 07:47:39 +00:00
Родитель 545d521cc8
Коммит 38d9aa3f4d
2 изменённых файлов: 10 добавлений и 18 удалений

Просмотреть файл

@ -1,18 +0,0 @@
-*- rd -*-
$Author$
=begin
= StringIO
Pseudo (({IO})) class from/to (({String})).
This library is based on MoonWolf version written in Ruby. Thanks a lot.
= Differences to (({IO}))
* not implemented: (({fcntl})), (({reopen})).
* (({fileno})) returns nil.
* (({pos=})) returns new position, not 0.
* (({ungetc})) does nothing at start of the string.
=end

10
ext/stringio/README.md Normal file
Просмотреть файл

@ -0,0 +1,10 @@
# 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.