Error indicating a recursion overflow error in task selection.

Methods
A
M
N
Class Public methods
new(*args)
# File lib/rake/rule_recursion_overflow_error.rb, line 6
def initialize(*args)
  super
  @targets = []
end
Instance Public methods
add_target(target)
# File lib/rake/rule_recursion_overflow_error.rb, line 11
def add_target(target)
  @targets << target
end
message()
# File lib/rake/rule_recursion_overflow_error.rb, line 15
def message
  super + ": [" + @targets.reverse.join(' => ') + "]"
end