debian-mirror-gitlab/lib/banzai/pipeline/combined_pipeline.rb
2015-12-23 02:04:40 +05:30

28 lines
570 B
Ruby

require 'banzai'
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