method
app_config_path
v2_6_3 -
Show latest stable
- Class:
Bundler
app_config_path()public
No documentation available.
# File lib/bundler.rb, line 242
def app_config_path
if app_config = ENV["BUNDLE_APP_CONFIG"]
Pathname.new(app_config).expand_path(root)
else
root.join(".bundle")
end
end