module MethodLog class MethodCommit def initialize(commit: nil, method_definition: nil) @commit = commit @method_definition = method_definition end def ==(other) (commit == other.commit) && (method_definition == other.method_definition) end def hash [commit, method_definition].hash end def to_s "#{commit}: #{method_definition}" end protected attr_reader :commit attr_reader :method_definition end end