Sha256: 324703fb0cf53a14f78a65b0db9df63e3ddbb50b18ae9b0667633ee6d8aadec5
Contents?: true
Size: 677 Bytes
Versions: 48
Compression:
Stored size: 677 Bytes
Contents
require "pact_broker/api/resources/badge" module PactBroker module Api module Resources class MatrixBadge < Badge private def tags { consumer_tag: identifier_from_path[:tag], provider_tag: identifier_from_path[:provider_tag] } end def latest_verification return nil unless pact @latest_verification ||= verification_service.find_latest_verification_for_tags( identifier_from_path[:consumer_name], identifier_from_path[:provider_name], identifier_from_path[:tag], identifier_from_path[:provider_tag] ) end end end end end
Version data entries
48 entries across 48 versions & 1 rubygems