socialforge/lib/git/backend/shell_adapter.rb

13 lines
191 B
Ruby
Raw Normal View History

2013-08-19 10:24:02 +08:00
# == GitLab Shell mixin
#
# Provide a shortcut to Gitlab::Shell instance by gitlab_shell
#
module Gitlab
module ShellAdapter
def gitlab_shell
Gitlab::Shell.new
end
end
end