mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
8 lines
249 B
Ruby
8 lines
249 B
Ruby
![]() |
# `brew readall` tries to import all formulae one-by-one.
|
||
|
# This can be useful for debugging issues across all formulae
|
||
|
# when making significant changes to formula.rb
|
||
|
|
||
|
require 'formula'
|
||
|
names = []
|
||
|
Formulary.read_all { |name, klass| names << name }
|