method

new_value

ruby latest stable - Class: Bundler::CLI::Config

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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