るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.081秒)

別のキーワード

  1. frame top
  2. irb/frame top
  3. pop top
  4. popmail top
  5. net/pop top

ライブラリ

クラス

検索結果

Rake::InvocationChain.append(task_name, chain) -> Rake::InvocationChain (18114.0)

与えられたタスク名を第二引数の Rake::InvocationChain に追加します。

...e::InvocationChain のインスタンスを指定します。

//emlist[][ruby]{
# Rakefile での記載例とする

task default: :test_rake_app
task :test_rake_app do
chain = Rake::InvocationChain::EMPTY
b = Rake::InvocationChain.append("task_a", chain)
b.to_s # => "TOP => task_a"
end
//}...