Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
relative_to_original_destination_root(path, remove_dot = true)
public
Returns the given path relative to the absolute root (ie, root where the
script started).
# File lib/bundler/vendor/thor/lib/thor/actions.rb, line 115
def relative_to_original_destination_root(path, remove_dot = true)
path = path.dup
if path.gsub!(@destination_stack[0], ".")
remove_dot ? (path[2..-1] || "") : path
else
path
end
end