[#68137] improve semantics of manpages — "Anthony J. Bentley" <anthony@...>
Hi,
1 message
2015/02/17
[#68144] Re: Future of test suites for Ruby — Anthony Crumley <anthony.crumley@...>
FYI...
4 messages
2015/02/17
[#68343] [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault? — ruby@...
Issue #10916 has been reported by why do i need this acct just to create a bug report.
5 messages
2015/02/27
[#68373] Re: [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault?
— "Martin J. Dürst" <duerst@...>
2015/03/02
> * Author: why do i need this acct just to create a bug report
[#68358] [Ruby trunk - Bug #10902] require("enumerator") scans LOAD_PATH 2x on every invocation — [email protected]
Issue #10902 has been updated by Aman Gupta.
3 messages
2015/02/28
[ruby-core:68295] [Ruby trunk - Bug #10582] String#chomp strips off more newlines than its documentation states
From:
usa@...
Date:
2015-02-25 05:18:53 UTC
List:
ruby-core #68295
Issue #10582 has been updated by Usaku NAKAMURA. Backport changed from 2.0.0: REQUIRED, 2.1: REQUIRED, 2.2: DONTNEED to 2.0.0: DONE, 2.1: REQUIRED, 2.2: DONTNEED ruby_2_0_0 r49733 merged revision(s) 48747. ---------------------------------------- Bug #10582: String#chomp strips off more newlines than its documentation states https://bugs.ruby-lang.org/issues/10582#change-51648 * Author: Alex Boyd * Status: Closed * Priority: Normal * Assignee: Zachary Scott * ruby -v: ruby 2.2.0dev (2014-12-04 trunk 48708) [x86_64-darwin14] * Backport: 2.0.0: DONE, 2.1: REQUIRED, 2.2: DONTNEED ---------------------------------------- Given an empty string as its parameter, String#chomp strips off as many trailing newlines as are present, plus a preceding carriage return if one exists: ~~~ irb(main):001:0> "foo\n\n\n".chomp => "foo\n\n" irb(main):002:0> "foo\n\n\n".chomp '' => "foo" irb(main):003:0> "foo\r\n\n\n".chomp '' => "foo" ~~~ This should either be mentioned as part of String#chomp's documentation, or removed. ---Files-------------------------------- 780.patch (1.79 KB) -- https://bugs.ruby-lang.org/