summaryrefslogtreecommitdiff
path: root/lib/gitlab/backend/shell_adapter.rb
blob: f247f4593d7ffc8f1e2211245033b75a24d5fa16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# == 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