diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index c621d6c37..ebd23768d 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1256,6 +1256,7 @@ class Formula "dependencies" => deps.map(&:name).uniq, "recommended_dependencies" => deps.select(&:recommended?).map(&:name).uniq, "optional_dependencies" => deps.select(&:optional?).map(&:name).uniq, + "build_dependencies" => deps.select(&:build?).map(&:name).uniq, "conflicts_with" => conflicts.map(&:name), "caveats" => caveats } |
