Sha256: f690c31e1e72ed179cf30dcf00e67f7b12b7f53360a1d39f20a7841cc02126fa
Contents?: true
Size: 324 Bytes
Versions: 16
Compression:
Stored size: 324 Bytes
Contents
module Pronto Status = Struct.new(:sha, :state, :context, :description) do def ==(other) sha == other.sha && state == other.state && context == other.context && description == other.description end def to_s "[#{sha}] #{context} #{state} - #{description}" end end end
Version data entries
16 entries across 16 versions & 1 rubygems