156件ヒット
[1-100件を表示]
(0.136秒)
別のキーワード
ライブラリ
-
net
/ imap (12) - optparse (96)
-
rdoc
/ rdoc (12) -
rubygems
/ command (12) -
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / dependency _ command (12)
クラス
-
Gem
:: Command (12) -
Gem
:: Commands :: BuildCommand (12) -
Gem
:: Commands :: DependencyCommand (12) -
Net
:: IMAP :: MailboxQuota (12) - OptionParser (96)
-
RDoc
:: RDoc (12)
検索結果
先頭5件
-
Gem
:: Command # usage -> String (27202.0) -
このメソッドはサブクラスで再定義されます。 個々の gem コマンドの使用方法を返します。
...このメソッドはサブクラスで再定義されます。
個々の gem コマンドの使用方法を返します。... -
Gem
:: Commands :: BuildCommand # usage -> String (27202.0) -
使用方法を表す文字列を返します。
使用方法を表す文字列を返します。 -
Gem
:: Commands :: DependencyCommand # usage -> String (27202.0) -
使用方法を表す文字列を返します。
使用方法を表す文字列を返します。 -
Net
:: IMAP :: MailboxQuota # usage -> Integer (24302.0) -
現在のメールボックス内の使用量を返します。
現在のメールボックス内の使用量を返します。 -
OptionParser
# banner=(heading) (119.0) -
サマリの最初に表示される文字列を指定します。
...字列を指定します。
@param heading サマリの最初に表示される文字列を指定します。
//emlist[例][ruby]{
require "optparse"
options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: example.rb [options]" # => "Usage: example.rb [options]"
opts.on("-v", "-......-[no-]verbose", "Run verbosely") do |v|
options[:verbose] = v
end
end
opts.banner # => "Usage: example.rb [options]"
//}... -
OptionParser
# banner -> String (113.0) -
サマリの最初に表示される文字列を返します。
...します。
//emlist[例][ruby]{
require "optparse"
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
p opts.banner # => "Usage: example.rb [options]"
//}... -
OptionParser
# help -> String (113.0) -
サマリの文字列を返します。
...optparse"
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 (113.0) -
サマリの文字列を返します。
...optparse"
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
# on _ head(*arg , &block) -> self (107.0) -
オプションを取り扱うためのブロックを自身の持つリストの最初に登録します。
...@param arg OptionParser#on と同様です。
@param block OptionParser#on と同様です。
//emlist[例][ruby]{
require "optparse"
opts = OptionParser.new do |opts|
opts.on_head("-i", "--init")
opts.on("-u", "--update")
opts.on_tail("-h", "--help")
end
puts opts.help
# => Usage: test [...