Allow conversion of Dependencies to Array

This is needed for the intersection code in `brew deps` to work right,
but can hopefully be refactored away somehow eventually.
This commit is contained in:
Jack Nagel 2013-01-07 18:16:11 -06:00
parent c670339c02
commit dfa387700d

View File

@ -108,6 +108,10 @@ class Dependencies
def *(arg)
@deps * arg
end
def to_ary
@deps
end
end
module Dependable