debian-mirror-gitlab/lib/gitlab/git/util.rb

23 lines
365 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
# Gitaly note: JV: no RPC's here.
2017-08-17 22:00:37 +05:30
module Gitlab
module Git
module Util
2019-12-04 20:38:33 +05:30
LINE_SEP = "\n"
2017-08-17 22:00:37 +05:30
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