aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
Commit message (Collapse)AuthorAgeFilesLines
* [DOC] Cross references for `ARGF`Nobuyoshi Nakada2022-07-281-61/+61
|
* Fix documentation for ARGF.inplace_mode{,=}Jeremy Evans2022-07-271-7/+8
| | | | | | | The value affects the name of the backup file created, not the name of the file modified (as the file is modified in place). Fixes [Bug #18920]
* Adjust styles [ci skip]Nobuyoshi Nakada2022-07-271-2/+4
|
* [DOC] IO#eofKaíque Kandy Koga2022-07-231-1/+1
| | | | Use IO#eof? instead of I#eof?
* Do not chomp trailing line separator IO#each with nil separator and chompJeremy Evans2022-07-211-1/+0
| | | | | | | nil separator means no sepator, so chomp should not remove a line separator. Partially Fixes [Bug #18770]
* Expand tabs [ci skip]Takashi Kokubun2022-07-211-1813/+1813
| | | | [Misc #18891]
* Revert "Do not chomp trailing line separator IO#each with nil separator and ↵Jeremy Evans2022-07-211-0/+1
| | | | | | | | chomp" This reverts commit 04f86ad0b5d2fe4711ff300d855228a6aed55f33. This is causing CI issues, reverting for now.
* Do not chomp trailing line separator IO#each with nil separator and chompJeremy Evans2022-07-211-1/+0
| | | | | | | nil separator means no sepator, so chomp should not remove a line separator. Partially Fixes [Bug #18770]
* [DOC] Fix documentation for ARGF#readlinesPeter Zhu2022-07-151-4/+4
| | | | [Bug #18909]
* [DOC] Fix typo in documentation for IO#readlinesPeter Zhu2022-07-141-1/+1
|
* [Bug #18892] Reset `ARGF.lineno` after reading shebangNobuyoshi Nakada2022-07-071-0/+6
|
* [Bug #18898] Fallback invalid external encoding to the defaultNobuyoshi Nakada2022-07-061-1/+3
|
* Copy `IO#wait*` methods from `io-wait` gem to `io.c`.Samuel Williams2022-06-251-0/+217
|
* Allow to just warn as bool expected, without an exceptionNobuyoshi Nakada2022-06-201-2/+2
|
* Using is_ascii_string to check encodingS-H-GAMELINKS2022-06-171-1/+1
|
* Handle case where write result is zero.Samuel Williams2022-06-131-0/+6
|
* Stop ignoring 4th positional argument to IO.#{foreach,readlines}Jeremy Evans2022-06-091-2/+2
| | | | Fixes [Bug #18771]
* Make `Kernel#p` completely uninterruptible.Samuel Williams2022-05-281-3/+3
|
* Tidy up usage of write_lock.Samuel Williams2022-05-281-68/+17
|
* Improve handling of zero length writes.Samuel Williams2022-05-281-12/+14
|
* Improve consistency of `io_binwritev_internal` implementaiton.Samuel Williams2022-05-281-5/+3
|
* Improve error handling in `finish_writeconv`.Samuel Williams2022-05-281-11/+12
|
* Better handling of `error`.Samuel Williams2022-05-281-13/+20
|
* Always allocate write_lockmachty2022-05-281-0/+3
|
* Make `io_binwritev` atomic.Samuel Williams2022-05-281-62/+83
|
* Make `io_binwrite` atomic.Samuel Williams2022-05-281-88/+124
|
* Fix out of bounds read.Samuel Williams2022-05-251-2/+1
|
* [DOC] Add a note to clarify binary flags to `IO.new`David Rodríguez2022-05-201-1/+7
| | | | Try to make it more clear that the `File::BINARY` integer flag, and the `b` string suffix are not equivalent.
* Link from printf methods to format spec doc (#5886)Burdette Lamar2022-05-051-6/+12
|
* Fix ARGF#lineno to return Integer as documentedJean Boussier2022-04-251-1/+1
| | | | [Bug #18753]
* [ci skip] Fix docsPeter Zhu2022-04-131-1/+1
|
* Fix some RDoc links (#5778)Burdette Lamar2022-04-081-9/+10
|
* [DOC] Fix linux kernel commit linksS-H-GAMELINKS2022-04-071-4/+4
|
* [DOC] Enhanced RDoc for String (#5751)Burdette Lamar2022-04-021-11/+11
| | | | | | Adds to doc for String.new, also making it compliant with documentation_guide.rdoc. Fixes some broken links in io.c (that I failed to correct yesterday).
* [DOC] Fix broken links to encodings.rdocNobuyoshi Nakada2022-04-021-11/+11
| | | | | Also prefers class name based references than file name based references.
* Prefix ccan headers (#4568)Nobuyoshi Nakada2022-03-301-5/+5
| | | | | | | | | | | | | * Prefixed ccan headers * Remove unprefixed names in ccan/build_assert * Remove unprefixed names in ccan/check_type * Remove unprefixed names in ccan/container_of * Remove unprefixed names in ccan/list Co-authored-by: Samuel Williams <samuel.williams@oriontransfer.co.nz>
* [DOC] Fix formatting for What's Here in IO (#5719)Burdette Lamar2022-03-251-99/+99
| | | | | | | * Fix formatting for What's Here in IO * Repair formatting in What's Heres in numeric.c * Fix formatting for What's Here in IO
* Close files in examples in io.c (#5615)Burdette Lamar2022-03-011-0/+65
|
* [DOC] Enhanced RDoc for some encoding methods (#5598)Burdette Lamar2022-02-251-0/+7
| | | | | | | | | | | | | | In String, treats: #b #scrub #scrub! #unicode_normalize #unicode_normalize! #encode #encode! Also adds a note to IO.new (suggested by @jeremyevans).
* Enhanced RDoc for io.c (#5573)Burdette Lamar2022-02-181-61/+81
| | | | | Links to options doc added/improved; in particular, new links to new section "Encoding Options" in encoding.rdoc. Minor inconsistencies ironed out.
* Enhanced RDoc concerning command injection (#5537)Burdette Lamar2022-02-181-25/+46
| | | | | | | | | | | | | | | | Clarifies security vulnerabilities for commands. Treats: Kernel.system Kernel.` (backtick) IO.popen IO.read IO.write IO.binread IO.binwrite IO.readlines IO.foreach
* [DOC] Simplify operator method referencesNobuyoshi Nakada2022-02-121-1/+1
|
* [DOC] Replace with IO@ModesPeter Zhu2022-02-071-5/+5
|
* [DOC] Remove extra periodPeter Zhu2022-02-071-1/+1
|
* [DOC] Remove extra closing curly bracketPeter Zhu2022-02-071-1/+1
|
* [DOC] Use RDoc link style for links in the same class/modulePeter Zhu2022-02-071-63/+63
| | | | | | | | | | I used this regex: (?<=\[)#(?:class|module)-([A-Za-z]+)-label-([A-Za-z0-9\-\+]+) And performed a global find & replace for this: rdoc-ref:$1@$2
* [DOC] Use RDoc link style for links to other classes/modulesPeter Zhu2022-02-071-7/+7
| | | | | | | | | | I used this regex: ([A-Za-z]+)\.html#(?:class|module)-[A-Za-z]+-label-([A-Za-z0-9\-\+]+) And performed a global find & replace for this: rdoc-ref:$1@$2
* [DOC] Fix links in documentation for File and IOPeter Zhu2022-02-071-4/+4
| | | | Fixes some typos and dead links.
* {DOC] Enhanced RDoc for io.c (#5529)Burdette Lamar2022-02-051-25/+30
| | | Changes parameter name from simple opts to open_opts or enc_opts when appropriate; leaves the name unchanged when more than one kind of option is allowed.
* [DOC] Enhanced RDoc for io.c (#5527)Burdette Lamar2022-02-041-129/+115
| | | | | | | | | | | | Treats: IO.binread (abbreviated to be like IO.binwrite). IO.write IO.binwrite IO.copystream IO#external_encoding IO#internal_encoding IO#set_encoding