11件ヒット
[1-11件を表示]
(0.252秒)
モジュール
-
Rake
:: TaskManager (11)
検索結果
-
Rake
:: TaskManager # synthesize _ file _ task(task _ name) -> Rake :: FileTask | nil (18215.0) -
与えられたタスク名をもとにファイルタスクを合成します。
...ruby]{
# Rakefile での記載例とする
task default: :test_rake_app
task :test_rake_app do |task|
task.application.synthesize_file_task("sample_file") # => nil
IO.write("sample_file", "")
task.application.synthesize_file_task("sample_file") # => <Rake::FileTask sample_file => []>
end
//}...