72件ヒット
[1-72件を表示]
(0.084秒)
ライブラリ
-
net
/ imap (36) - optparse (24)
-
rubygems
/ command (12)
クラス
-
Gem
:: Command (12) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) - OptionParser (24)
検索結果
先頭5件
- Net
:: IMAP :: BodyTypeBasic # description -> String | nil - Net
:: IMAP :: BodyTypeMessage # description -> String | nil - Net
:: IMAP :: BodyTypeText # description -> String | nil - Gem
:: Command # summary=(description) - OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) -> ()
-
Net
:: IMAP :: BodyTypeBasic # description -> String | nil (21118.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeMessage # description -> String | nil (21118.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeText # description -> String | nil (21118.0) -
Content-Description の値を文字列で返します。
...Content-Description の値を文字列で返します。
@see 2045... -
Gem
:: Command # summary=(description) (6208.0) -
コマンドの短い説明をセットします。
...コマンドの短い説明をセットします。
@param description コマンドの短い説明を指定します。... -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) -> () (213.0) -
サマリを指定された to へと加えていきます。
...//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.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summarize(["description\n"], 10, 8, " ")... -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) {|line| . . . } -> () (213.0) -
サマリを指定された to へと加えていきます。
...//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.summarize
# => [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summarize(["description\n"], 10, 8, " ")...