mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
19 lines
318 B
Ruby
19 lines
318 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SystemCheck
|
|
module RakeTask
|
|
# Used by gitlab:gitlab_shell:check rake task
|
|
class GitlabShellTask
|
|
extend RakeTaskHelpers
|
|
|
|
def self.name
|
|
'GitLab Shell'
|
|
end
|
|
|
|
def self.checks
|
|
[SystemCheck::GitlabShellCheck]
|
|
end
|
|
end
|
|
end
|
|
end
|