module Gitlab::Git::Util
Constants
- LINE_SEP
Public Class Methods
count_lines(string)
click to toggle source
# 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