summaryrefslogtreecommitdiff
path: root/lib/gitlab/shell_adapter.rb
blob: 053dd4ab9e00e390cd138e77fe7b0983dc7c992e (plain)
1
2
3
4
5
6
7
8
9
10
11
# == GitLab Shell mixin
#
# Provide a shortcut to Gitlab::Shell instance by gitlab_shell
#
module Gitlab
  module ShellAdapter
    def gitlab_shell
      @gitlab_shell ||= Gitlab::Shell.new
    end
  end
end