mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
15 lines
314 B
Ruby
15 lines
314 B
Ruby
#: * `config`:
|
|
#: Show Homebrew and system configuration useful for debugging. If you file
|
|
#: a bug report, you will likely be asked for this information if you do not
|
|
#: provide it.
|
|
|
|
require "system_config"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def config
|
|
SystemConfig.dump_verbose_config
|
|
end
|
|
end
|