blob: b5f2502b03b528ea05091cd281073ad2e10d0e15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
#:  * `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
  def config
    SystemConfig.dump_verbose_config
  end
end
  |