Exception: Rake::RuleRecursionOverflowError
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
          StandardError
         | |
| Instance Chain: 
          self,
          StandardError
         | |
| Inherits: | StandardError 
 | 
| Defined in: | lib/rake/rule_recursion_overflow_error.rb | 
Overview
Error indicating a recursion overflow error in task selection.
Class Method Summary
- .new(*args) ⇒ RuleRecursionOverflowError constructor
Instance Method Summary
Constructor Details
    .new(*args)  ⇒ RuleRecursionOverflowError 
  
# File 'lib/rake/rule_recursion_overflow_error.rb', line 6
def initialize(*args) super @targets = [] end
Instance Method Details
#add_target(target)
[ GitHub ]# File 'lib/rake/rule_recursion_overflow_error.rb', line 11
def add_target(target) @targets << target end
#message
[ GitHub ]# File 'lib/rake/rule_recursion_overflow_error.rb', line 15
def super + ": [" + @targets.reverse.join(" => ") + "]" end