gitlabhq/grit

View on GitHub
lib/grit_ext/diff.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Grit
  class Diff

    def old_path
      GritExt.encode! @a_path
    end

    def new_path
      GritExt.encode! @b_path
    end

    def diff
      if @diff.nil?
        @diff = ""
      else
        lines = @diff.lines.to_a
        path = GritExt.encode! lines.shift(2).join
        body = GritExt.encode! lines.join
        begin
          @diff = path + body
        rescue Encoding::CompatibilityError
          @diff = GritExt.clean(path) + GritExt.clean(body)
        end
      end
    end
  end
end