blob: a7fc414810632c1f8e8055a4f0738c5e5c55fca8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# == Gitolited mixin
#
# Provide a shortcut to Gitlab::Shell instance by gitlab_shell
#
# Used by Project, UsersProject, etc
#
module Gitolited
def gitlab_shell
Gitlab::Shell.new
end
end
|