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