summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/util.rb
blob: 4708f22dcb31520dc982562bfa1f4153bf43c7dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Gitaly note: JV: no RPC's here.

module Gitlab
  module Git
    module Util
      LINE_SEP = "\n".freeze

      def self.count_lines(string)
        case string[-1]
        when nil
          0
        when LINE_SEP
          string.count(LINE_SEP)
        else
          string.count(LINE_SEP) + 1
        end
      end
    end
  end
end