108件ヒット
[101-108件を表示]
(0.186秒)
別のキーワード
ライブラリ
-
irb
/ cmd / help (12) - optparse (84)
- win32ole (12)
クラス
-
IRB
:: ExtendCommand :: Help (12) - OptionParser (84)
-
WIN32OLE
_ TYPE (12)
検索結果
-
OptionParser
# to _ a -> [String] (9320.0) -
サマリの各行を要素とした配列を返します。
...を返します。
//emlist[例][ruby]{
require "optparse"
opts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
opts.to_a # => ["Usage: test [options]", " -i, --init\n", " -u, --update\n", " -h, --help\n"]
//}...