Welcome to mirror list, hosted at ThFree Co, Russian Federation.

shell_adapter.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59fc6ee8dc8b246536d599cfa5d0e7d53d82a77e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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