# File lib/rake/task.rb, line 71 71: def initialize(task_name, app) 72: @name = task_name.to_s 73: @prerequisites = [] 74: @actions = [] 75: @already_invoked = false 76: @full_comment = nil 77: @comment = nil 78: @lock = Monitor.new 79: @application = app 80: @scope = app.current_scope 81: @arg_names = nil 82: @locations = [] 83: end