Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
rm_rf(list, noop: nil, verbose: nil, secure: nil)
private
Equivalent to
Bundler::FileUtils.rm_r(list, :force => true)
WARNING: This method causes local vulnerability. Read the documentation of
#rm_r first.
# File lib/bundler/vendor/fileutils/lib/fileutils.rb, line 569
def rm_rf(list, noop: nil, verbose: nil, secure: nil)
rm_r list, force: true, noop: noop, verbose: verbose, secure: secure
end