# File lib/rake.rb, line 325 325: def initialize(task_name, app) 326: @name = task_name.to_s 327: @prerequisites = FileList[] 328: @actions = [] 329: @already_invoked = false 330: @comment = nil 331: @lock = Mutex.new 332: @application = app 333: @scope = app.current_scope 334: end