Object
InvocationChain tracks the chain of task invocations to detect circular dependencies.
# File lib/rake/invocation_chain.rb, line 16
16: def append(value)
17: if member?(value)
18: fail RuntimeError, "Circular dependency detected: #{to_s} => #{value}"
19: end
20: self.class.new(value, self)
21: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.