class Rugged::Patch
def additions
def additions stat[0] end
def changes
def changes additions + deletions end
def deletions
def deletions stat[1] end
def hunks
def hunks each_hunk.to_a end
def inspect
def inspect "#<#{self.class.name}:#{object_id}>" end