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

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

module Banzai
  module Pipeline
    def self.[](name)
      name ||= :full
      const_get("#{name.to_s.camelize}Pipeline", false)
    end
  end
end