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