aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-02-11 17:25:52 -0500
committerJack Nagel2014-02-11 17:27:12 -0500
commit18f3b9f6d11678cf1649e72706b51c7a7b5d3cd4 (patch)
treec8ae55f26eefdee985eb44ccbf29dee92c03c260 /Library
parent63e56fd4dfcd2a50e9c9d67c4777dcf450aad96a (diff)
downloadbrew-18f3b9f6d11678cf1649e72706b51c7a7b5d3cd4.tar.bz2
ls-taps: search names only
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-ls-taps.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-ls-taps.rb b/Library/Contributions/cmd/brew-ls-taps.rb
index cc46cd326..aa6909447 100755
--- a/Library/Contributions/cmd/brew-ls-taps.rb
+++ b/Library/Contributions/cmd/brew-ls-taps.rb
@@ -1,6 +1,6 @@
require "utils/json"
-GitHub.open("https://api.github.com/search/repositories?q=homebrew+sort:stars&per_page=100") do |json|
+GitHub.open("https://api.github.com/search/repositories?q=homebrew+in:name&sort=stars&per_page=100") do |json|
json["items"].each do |repo|
if repo["name"] =~ /^homebrew-(\S+)$/
user = repo["owner"]["login"]