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

factory.rb « external « status « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07b15bd8d97336d4d8c52250c2796f105b5b759b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gitlab
  module Ci
    module Status
      module External
        class Factory < Status::Factory
          def self.common_helpers
            Status::External::Common
          end
        end
      end
    end
  end
end