Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/git.rb')
-rw-r--r--lib/gitlab/git.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/gitlab/git.rb b/lib/gitlab/git.rb
deleted file mode 100644
index 0c350d7c675..00000000000
--- a/lib/gitlab/git.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-module Gitlab
- module Git
- BLANK_SHA = '0' * 40
- TAG_REF_PREFIX = "refs/tags/"
- BRANCH_REF_PREFIX = "refs/heads/"
-
- class << self
- def ref_name(ref)
- ref.gsub(/\Arefs\/(tags|heads)\//, '')
- end
-
- def tag_ref?(ref)
- ref.start_with?(TAG_REF_PREFIX)
- end
-
- def branch_ref?(ref)
- ref.start_with?(BRANCH_REF_PREFIX)
- end
-
- def blank_ref?(ref)
- ref == BLANK_SHA
- end
- end
- end
-end