Sha256: 7622856a9e7668f008885bf7729828efc73e1b4203112870997fded9ed72910a
Contents?: true
Size: 343 Bytes
Versions: 146
Compression:
Stored size: 343 Bytes
Contents
module PactBroker module Domain class Group < Array def initialize *index_items self.concat index_items.flatten end def == other Group === other && super end def include_pacticipant? pacticipant any? { | index_item | index_item.include? pacticipant } end end end end
Version data entries
146 entries across 146 versions & 1 rubygems