diff options
author | Burdette Lamar <[email protected]> | 2020-06-24 16:04:25 -0500 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-07-20 02:32:53 +0900 |
commit | d9eff306f5806c6a1b79019ec44395e4cc816218 (patch) | |
tree | ff5b302f3beba9a165b88d8b95aca8541296d34a /doc/csv/arguments | |
parent | 920a16893ad5b76bcb357d45f2c0b9d91d09268e (diff) |
[ruby/csv] Organize files in doc/ (#145)
https://github.com/ruby/csv/commit/bc9ea859b0
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3332
Diffstat (limited to 'doc/csv/arguments')
-rw-r--r-- | doc/csv/arguments/io.rdoc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/csv/arguments/io.rdoc b/doc/csv/arguments/io.rdoc new file mode 100644 index 0000000000..f5fe1d1975 --- /dev/null +++ b/doc/csv/arguments/io.rdoc @@ -0,0 +1,5 @@ +* Argument +io+ should be an IO object that is: + * Open for reading; on return, the IO object will be closed. + * Positioned at the beginning. + To position at the end, for appending, use method CSV.generate. + For any other positioning, pass a preset \StringIO object instead. |