るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.079秒)

別のキーワード

  1. drb verbose
  2. drb verbose=
  3. tracer verbose?
  4. tracer verbose
  5. tracer verbose=

ライブラリ

クラス

検索結果

OptionParser#help -> String (18126.0)

サマリの文字列を返します。

...se"

options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: example.rb [options]"

opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
options[:verbose] = v
end
end

puts opts.help

# => Usage: example.rb [options]
# -v, --[no-]verbose Run verbosely
//}...

OptionParser#to_s -> String (3026.0)

サマリの文字列を返します。

...se"

options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: example.rb [options]"

opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
options[:verbose] = v
end
end

puts opts.help

# => Usage: example.rb [options]
# -v, --[no-]verbose Run verbosely
//}...