336件ヒット
[1-100件を表示]
(0.171秒)
ライブラリ
-
cgi
/ html (24) - optparse (192)
- prettyprint (24)
-
rexml
/ document (12) - rss (84)
クラス
- OptionParser (192)
- PrettyPrint (24)
-
REXML
:: Formatters :: Pretty (12) -
RSS
:: ImageItemModel :: ImageItem (48) -
RSS
:: Maker :: ImageBase (12) -
RSS
:: Rss :: Channel :: Image (24)
モジュール
-
CGI
:: HtmlExtension (24)
キーワード
- breakable (24)
-
image
_ width (12) -
image
_ width= (12) - img (24)
- on (144)
- summarize (24)
-
summary
_ width (12) -
summary
_ width= (12) - width (24)
検索結果
先頭5件
-
RSS
:: ImageItemModel :: ImageItem # width= (24103.0) -
@todo
@todo -
REXML
:: Formatters :: Pretty # width=(w) (21101.0) -
出力のページ幅を設定します。
...出力のページ幅を設定します。
@param w ページ幅の設定値
@see REXML::Formatters::Pretty#width... -
RSS
:: Rss :: Channel :: Image # width= (18102.0) -
@todo
@todo -
RSS
:: Maker :: ImageBase # width=() (18101.0) -
@todo
@todo -
OptionParser
# summary _ width=(width) (15207.0) -
サマリを表示するときの幅を整数で指定します。
...@param width サマリを表示するときの幅を整数で指定します。
//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.summary_width # => 32
opts.summarize
#......=> [" -i, --init\n", " -u, --update\n", " -h, --help\n"]
opts.summary_width = 8 # => 8
opts.summary_width # => 8
opts.summarize
# => [" -i\n", " --init\n", " -u\n", " --update\n", " -h\n", " --help\n"]
//}... -
RSS
:: ImageItemModel :: ImageItem # image _ width= (15203.0) -
@todo
@todo -
RSS
:: ImageItemModel :: ImageItem # image _ width (12103.0) -
@todo
@todo -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) -> () (9303.0) -
サマリを指定された to へと加えていきます。
...せん。
@param to サマリを出力するオブジェクトを指定します。to には << メソッドが定義されいる必要があります。
@param width サマリの幅を整数で指定します。
@param max サマリの最大幅を整数で指定します。
@param indent サマ......//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, " "......)
# => ["description\n", " -i\n", " --init\n", " -u\n", " --update\n", " -h\n", " --help\n"]
//}... -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) {|line| . . . } -> () (9303.0) -
サマリを指定された to へと加えていきます。
...せん。
@param to サマリを出力するオブジェクトを指定します。to には << メソッドが定義されいる必要があります。
@param width サマリの幅を整数で指定します。
@param max サマリの最大幅を整数で指定します。
@param indent サマ......//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, " "......)
# => ["description\n", " -i\n", " --init\n", " -u\n", " --update\n", " -h\n", " --help\n"]
//}...