Sha256: 5813fc4f51606e5da053747993d986f45925d741130b944051f1a57a368b5d5f
Contents?: true
Size: 269 Bytes
Versions: 16
Compression:
Stored size: 269 Bytes
Contents
module Pronto Comment = Struct.new(:sha, :body, :path, :position) do def ==(other) position == other.position && path == other.path && body == other.body end def to_s "[#{sha}] #{path}:#{position} - #{body}" end end end
Version data entries
16 entries across 16 versions & 1 rubygems