12件ヒット
[1-12件を表示]
(0.075秒)
別のキーワード
ライブラリ
- rake (12)
クラス
検索結果
-
Rake
:: InvocationChain # append(task _ name) -> Rake :: InvocationChain (18114.0) -
与えられたタスク名を追加して新しい Rake::InvocationChain を返します。
...た場合に発生します。
//emlist[][ruby]{
# 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
//}...