# File lib/rake.rb, line 492
492:     def initialize(task_name, app)
493:       @name = task_name.to_s
494:       @prerequisites = []
495:       @actions = []
496:       @already_invoked = false
497:       @full_comment = nil
498:       @comment = nil
499:       @lock = Monitor.new
500:       @application = app
501:       @scope = app.current_scope
502:       @arg_names = nil
503:     end