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