add JobSet#size

This commit is contained in:
Josh Holtrop 2017-05-17 09:36:27 -04:00
parent 7534b29e26
commit ca445f5733

View File

@ -63,5 +63,13 @@ module Rscons
@jobs.clear
end
# Get the JobSet size.
#
# @return [Integer]
# JobSet size.
def size
@jobs.size
end
end
end