debian-mirror-gitlab/lib/banzai/pipeline/combined_pipeline.rb
2016-06-02 11:05:42 +05:30

26 lines
569 B
Ruby

module Banzai
module Pipeline
module CombinedPipeline
def self.new(*pipelines)
Class.new(BasePipeline) do
const_set :PIPELINES, pipelines
def self.pipelines
self::PIPELINES
end
def self.filters
FilterArray.new(pipelines.flat_map(&:filters))
end
def self.transform_context(context)
pipelines.reduce(context) do |context, pipeline|
pipeline.transform_context(context)
end
end
end
end
end
end
end