summaryrefslogtreecommitdiff
path: root/doc/csv/arguments/io.rdoc
diff options
context:
space:
mode:
authorBurdette Lamar <BurdetteLamar@Yahoo.com>2020-06-24 16:04:25 -0500
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-07-20 02:32:53 +0900
commitd9eff306f5806c6a1b79019ec44395e4cc816218 (patch)
treeff5b302f3beba9a165b88d8b95aca8541296d34a /doc/csv/arguments/io.rdoc
parent920a16893ad5b76bcb357d45f2c0b9d91d09268e (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/io.rdoc')
-rw-r--r--doc/csv/arguments/io.rdoc5
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.