method
new_value
v2_6_3 -
Show latest stable
- Class:
Bundler::CLI::Config
new_value()private
No documentation available.
# File lib/bundler/cli/config.rb, line 77
def new_value
pathname = Pathname.new(args.join(" "))
if name.start_with?("local.") && pathname.directory?
pathname.expand_path.to_s
else
args.join(" ")
end
end