480件ヒット
[401-480件を表示]
(0.072秒)
ライブラリ
-
net
/ imap (36) - optparse (24)
- rake (72)
- 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 (36)
キーワード
-
add
_ description (12) -
arg
_ description (12) -
dc
_ description (12) -
dc
_ description= (12) -
dc
_ descriptions (12) - desc (12)
- description= (144)
-
last
_ comment (12) -
last
_ description (12) -
last
_ description= (12) - summarize (24)
- summary= (12)
検索結果
先頭5件
-
DublinCoreModel
# dc _ descriptions (6101.0) -
@todo
@todo -
Rake
:: TaskManager # last _ description -> String (3108.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
//}... -
Gem
:: Command # summary=(description) (108.0) -
コマンドの短い説明をセットします。
...コマンドの短い説明をセットします。
@param description コマンドの短い説明を指定します。... -
Kernel
# desc(description) -> String (108.0) -
直後の Rake タスクの説明を登録します。
...直後の Rake タスクの説明を登録します。
@param description 直後のタスクの説明を指定します。
例:
desc "Run the Unit Tests"
task :test => [:build] do
runtests
end... -
OptionParser
# summarize(to = [] , width = self . summary _ width , max = width - 1 , indent= self . summary _ indent) -> () (13.0) -
サマリを指定された to へと加えていきます。
...n("-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| . . . } -> () (13.0) -
サマリを指定された to へと加えていきます。
...n("-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"]
//}... -
Rake
:: TaskManager # last _ comment -> String (8.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
//}...