Sha256: 5dfcabb88858e4dcc7c658176f0cf8c68243c21f86aa628ec28097812a837a06
Contents?: true
Size: 517 Bytes
Versions: 52
Compression:
Stored size: 517 Bytes
Contents
# Copyright (C) the Rugged contributors. All rights reserved. # # This file is part of Rugged, distributed under the MIT license. # For full terms see the included LICENSE file. module Rugged class Diff class Hunk def delta @owner end def inspect "#<#{self.class.name}:#{object_id} {header: #{header.inspect}, count: #{count.inspect}}>" end # Returns an Array containing all lines of the hunk. def lines each_line.to_a end end end end
Version data entries
52 entries across 52 versions & 1 rubygems