468件ヒット
[401-468件を表示]
(0.026秒)
ライブラリ
-
net
/ imap (36) - optparse (24)
- rake (60)
- rss (300)
-
rubygems
/ command (24) -
rubygems
/ specification (24)
クラス
-
Gem
:: Command (24) -
Gem
:: Specification (24) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) - OptionParser (24)
-
RSS
:: Maker :: ChannelBase (24) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Maker :: TextinputBase (24) -
RSS
:: RDF :: Channel (24) -
RSS
:: RDF :: Item (24) -
RSS
:: RDF :: Textinput (24) -
RSS
:: Rss :: Channel (24) -
RSS
:: Rss :: Channel :: Image (24) -
RSS
:: Rss :: Channel :: Item (24) -
RSS
:: Rss :: Channel :: TextInput (24) -
Rake
:: Task (24)
モジュール
- DublinCoreModel (36)
- Kernel (12)
-
Rake
:: TaskManager (24)
キーワード
-
add
_ description (12) -
arg
_ description (12) -
dc
_ description (12) -
dc
_ description= (12) -
dc
_ descriptions (12) - desc (12)
- description= (144)
-
last
_ description (12) -
last
_ description= (12) - summarize (24)
- summary= (12)
検索結果
先頭5件
- DublinCoreModel
# dc _ descriptions - Rake
:: TaskManager # last _ description -> String - OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) -> () - OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) {|line| . . . } -> () - Gem
:: Command # summary=(description)
-
DublinCoreModel
# dc _ descriptions (12201.0) -
@todo
@todo -
Rake
:: TaskManager # last _ description -> String (6208.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
...詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//}... -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) -> () (3031.0) -
サマリを指定された to へと加えていきます。
...rse"
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", "... -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) {|line| . . . } -> () (3031.0) -
サマリを指定された to へと加えていきます。
...rse"
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", "... -
Gem
:: Command # summary=(description) (208.0) -
コマンドの短い説明をセットします。
...コマンドの短い説明をセットします。
@param description コマンドの短い説明を指定します。... -
Kernel
# desc(description) -> String (208.0) -
直後の Rake タスクの説明を登録します。
...直後の Rake タスクの説明を登録します。
@param description 直後のタスクの説明を指定します。
例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end...