Show prerequisites for compile task

This commit is contained in:
Nobuyoshi Nakada 2023-06-14 01:33:44 +09:00 committed by Hiroshi SHIBATA
parent c5c15a565b
commit f9deff32a3
Notes: git 2023-06-14 03:14:49 +00:00

View File

@ -1,8 +1,9 @@
module Rake
class ExtensionTask < TaskLib
def initialize(...)
task :compile do
task :compile do |args|
puts "Dummy `compile` task defined in #{__FILE__}"
puts "#{args.name} => #{args.prereqs.join(' ')}"
end
end
end