Class: PactBroker::Webhooks::Execution

Inherits:
Object
  • Object
show all
Defined in:
lib/pact_broker/webhooks/execution.rb

Instance Method Summary collapse

Instance Method Details

#<=>(other) ⇒ Object



24
25
26
27
28
# 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