debian-mirror-gitlab/lib/banzai/pipeline/combined_pipeline.rb
2016-01-19 16:12:03 +05:30

26 lines
552 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
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