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

parsers.rb « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4eccc08dfc6dc719ea0e943188db146c4b50a61 (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  module Ci
    module Parsers
      def self.fabricate!(file_type)
        "Gitlab::Ci::Parsers::#{file_type.classify}".constantize.new
      end
    end
  end
end