debian-mirror-gitlab/lib/gitlab/ci/parsers.rb

10 lines
179 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
module Gitlab
module Ci
module Parsers
def self.fabricate!(file_type)
"Gitlab::Ci::Parsers::#{file_type.classify}".constantize.new
end
end
end
end