Module: Gitlab::Git::Util

Defined in:
lib/gitlab_git/util.rb

Constant Summary collapse

LINE_SEP =
"\n".freeze

Class Method Summary collapse

Class Method Details

.count_lines(string) ⇒ Object



6
7
8
9
10
11
12
13
14
15
# File 'lib/gitlab_git/util.rb', line 6

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