append(task_name, chain) -> Rake::InvocationChain
[permalink][rdoc]与えられたタスク名を第二引数の Rake::InvocationChain に追加します。
# 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