gitlab-org--gitlab-foss/lib/gitlab/backend/shell_adapter.rb
2015-02-02 21:53:27 -08:00

11 lines
190 B
Ruby

# == 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