mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/optparse.rb (OptionParser#to_a): split for each lines.
[ruby-dev:45568][Bug #6348] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35467 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a06cddb466
commit
3c2f707f16
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Apr 25 05:46:12 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/optparse.rb (OptionParser#to_a): split for each lines.
|
||||
[ruby-dev:45568][Bug #6348]
|
||||
|
||||
Tue Apr 24 21:57:53 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/socket/raddrinfo.c (init_unix_addrinfo): show actual path length
|
||||
|
|
|
@ -1071,7 +1071,7 @@ XXX
|
|||
#
|
||||
# Returns option summary list.
|
||||
#
|
||||
def to_a; summarize("#{banner}".split) end
|
||||
def to_a; summarize("#{banner}".split(/^/)) end
|
||||
|
||||
#
|
||||
# Checks if an argument is given twice, in which case an ArgumentError is
|
||||
|
|
|
@ -33,6 +33,6 @@ class TestOptionParser::SummaryTest < TestOptionParser
|
|||
def test_summary
|
||||
o = OptionParser.new("foo\nbar")
|
||||
assert_equal("foo\nbar\n", o.to_s)
|
||||
assert_equal(["foo", "bar"], o.to_a)
|
||||
assert_equal(["foo\n", "bar"], o.to_a)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue