mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
12 lines
195 B
Ruby
12 lines
195 B
Ruby
# == 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
|