Add missing summarize method for StageOnly.

This commit is contained in:
Markus Reiter 2020-08-18 23:12:05 +02:00
parent c3874580a4
commit 77db066ae2

View File

@ -18,6 +18,10 @@ module Cask
def to_a
[true]
end
def summarize
"true"
end
end
end
end