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

gitolited.rb « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68b9b6255253b0e4faeeac16045ee3d8235061b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# == Gitolited mixin
#
# Provide a shortcut to Gitlab::Gitolite instance by gitolite
#
# Used by Project, UsersProject, etc
#
module Gitolited
  def gitolite
    Gitlab::Gitolite.new
  end
end