aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/index.rb
diff options
context:
space:
mode:
authorTerence Lee <hone02@gmail.com>2011-05-17 19:42:51 -0400
committerAndre Arko <andre@arko.net>2011-05-18 17:45:32 -0400
commit72911c218b28658dca0a6f3558f6a9e954aceeb3 (patch)
tree9d8a086f46ae2c95be456225c1114b9cb84b4a5b /lib/bundler/index.rb
parent84fdb604e1c9ecc630a03d981e102a075e1ee45c (diff)
downloadbundler-72911c218b28658dca0a6f3558f6a9e954aceeb3.tar.gz
i hear you like arrays...
Diffstat (limited to 'lib/bundler/index.rb')
-rw-r--r--lib/bundler/index.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/index.rb b/lib/bundler/index.rb
index 82952724..7e4ce986 100644
--- a/lib/bundler/index.rb
+++ b/lib/bundler/index.rb
@@ -38,7 +38,7 @@ module Bundler
def search(query)
results = local_search(query)
@sources.each do |source|
- results << source.search(query)
+ results += source.search(query)
end
results
end