aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2017-01-09 21:03:37 +0000
committerMike McQuaid2017-01-09 21:03:37 +0000
commit28ad8a06cc24d2d71400e9c860a52ef046022cf1 (patch)
tree0d04a62ec932e649284109b9d6567bb9013a7658
parent9cce3414fbd39d146d97911dbb3bf07fffaa1080 (diff)
downloadbrew-28ad8a06cc24d2d71400e9c860a52ef046022cf1.tar.bz2
formula: return runtime_dependencies in to_hash.
Which, in turn, provides it for `brew info --json=v1` so other tools such as e.g. `brew bundle` can make use of this information.
-rw-r--r--Library/Homebrew/formula.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index e6312ccdb..91a3e8150 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -1618,6 +1618,7 @@ class Formula
"used_options" => tab.used_options.as_flags,
"built_as_bottle" => tab.built_as_bottle,
"poured_from_bottle" => tab.poured_from_bottle,
+ "runtime_dependencies" => tab.runtime_dependencies,
}
end