Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
strip_leading_spaces(text)
private
No documentation available.
# File lib/bundler/ui/shell.rb, line 126
def strip_leading_spaces(text)
spaces = text[/\A\s+/, 0]
spaces ? text.gsub(/#{spaces}/, "") : text
end