class PactBroker::Webhooks::Execution

Public Instance Methods

<=>(other) click to toggle source
# File lib/pact_broker/webhooks/execution.rb, line 24
def <=> other
  comp = created_date <=> other.created_date
  comp = id <=> other.id if comp == 0
  comp
end