gitlabhq/lib/gitolited.rb

12 lines
195 B
Ruby
Raw Normal View History

2013-01-03 09:06:07 +02:00
# == Gitolited mixin
#
2013-02-11 19:16:59 +02:00
# Provide a shortcut to Gitlab::Shell instance by gitlab_shell
2013-01-03 09:06:07 +02:00
#
# Used by Project, UsersProject, etc
#
module Gitolited
2013-02-11 19:16:59 +02:00
def gitlab_shell
2013-02-04 15:07:56 +02:00
Gitlab::Shell.new
2013-01-03 09:06:07 +02:00
end
end