blob: daaa51f32b42792cf91e74421a33c54196819884 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#: * `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
|