Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
debug(depth = 0)
public
Conveys debug information to the
user.
@param [Integer] depth the current depth of the
resolution process. @return [void]
# File lib/bundler/resolver.rb, line 71
def debug(depth = 0)
return unless debug?
debug_info = yield
debug_info = debug_info.inspect unless debug_info.is_a?(String)
STDERR.puts debug_info.split("\n").map {|s| " " * depth + s }
end