class Bundler::CLI::Config

def new_value

def new_value
  pathname = Pathname.new(args.join(" "))
  if name.match(/\Alocal\./) && pathname.directory?
    pathname.expand_path.to_s
  else
    args.join(" ")
  end
end