method

new_value

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