aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-02-13 08:32:35 +0000
committerGitHub2017-02-13 08:32:35 +0000
commit7281cfaf63e45f8e4e46340d724926d0adbd7ccc (patch)
tree81bbc9a5eccdcea6fba7a214ad470a4b3a0a3dbd /Library
parentcfc90af3cbdcc84c3aef0121cd00e89798bf28c8 (diff)
parent588f98cf825be855782ec00272f8d7e691d37c69 (diff)
downloadbrew-7281cfaf63e45f8e4e46340d724926d0adbd7ccc.tar.bz2
Merge pull request #1972 from timotheecour/pr_brew_where_command
add `brew formula` command to show location of a formula
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/dev-cmd/formula.rb13
-rw-r--r--Library/Homebrew/test/formula_cmd_test.rb8
2 files changed, 21 insertions, 0 deletions
diff --git a/Library/Homebrew/dev-cmd/formula.rb b/Library/Homebrew/dev-cmd/formula.rb
new file mode 100644
index 000000000..71687dfa7
--- /dev/null
+++ b/Library/Homebrew/dev-cmd/formula.rb
@@ -0,0 +1,13 @@
+#: * `formula` <formula>:
+#: Display the path where <formula> is
+
+require "formula"
+
+module Homebrew
+ module_function
+
+ def formula
+ raise FormulaUnspecifiedError if ARGV.named.empty?
+ ARGV.resolved_formulae.each { |f| puts f.path }
+ end
+end
diff --git a/Library/Homebrew/test/formula_cmd_test.rb b/Library/Homebrew/test/formula_cmd_test.rb
new file mode 100644
index 000000000..abbe42d98
--- /dev/null
+++ b/Library/Homebrew/test/formula_cmd_test.rb
@@ -0,0 +1,8 @@
+require "testing_env"
+
+class IntegrationCommandTestFormula < IntegrationCommandTestCase
+ def test_formula
+ formula_file = setup_test_formula "testball"
+ assert_equal formula_file.to_s, cmd("formula", "testball")
+ end
+end