Parent

Rake::RuleRecursionOverflowError

Error indicating a recursion overflow error in task selection.

Public Class Methods

new(*args) click to toggle source
   # File lib/rake/rule_recursion_overflow_error.rb, line 6
6:     def initialize(*args)
7:       super
8:       @targets = []
9:     end

Public Instance Methods

add_target(target) click to toggle source
    # File lib/rake/rule_recursion_overflow_error.rb, line 11
11:     def add_target(target)
12:       @targets << target
13:     end
message() click to toggle source
    # File lib/rake/rule_recursion_overflow_error.rb, line 15
15:     def message
16:       super + ": [" + @targets.reverse.join(' => ') + "]"
17:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.