debian-mirror-gitlab/lib/gitlab/shell_adapter.rb
2017-08-17 22:00:37 +05:30

12 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