method

converted_value

ruby latest stable - Class: Bundler::Settings

Method not available on this version

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

converted_value(value, key)
private

No documentation available.

# File lib/bundler/settings.rb, line 379
    def converted_value(value, key)
      if is_array(key)
        to_array(value)
      elsif value.nil?
        nil
      elsif is_bool(key) || value == "false"
        to_bool(value)
      elsif is_num(key)
        value.to_i
      else
        value.to_s
      end
    end