append(task_name) -> Rake::InvocationChain
[permalink][rdoc]与えられたタスク名を追加して新しい Rake::InvocationChain を返します。
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do
invocation_chain= Rake::InvocationChain.new("task_a", Rake::InvocationChain::EMPTY)
invocation_chain.append("task_b") # => LL("task_b", "task_a")
end