class Bundler::Settings
def [](key)
def [](key) the_key = key_for(key) value = (@local_config[the_key] || ENV[the_key] || @global_config[the_key]) is_bool(key) ? to_bool(value) : value end
def [](key) the_key = key_for(key) value = (@local_config[the_key] || ENV[the_key] || @global_config[the_key]) is_bool(key) ? to_bool(value) : value end