gitlabhq/lib/gitolited.rb
2013-02-11 19:16:59 +02:00

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