Commit 13f44822 authored by Douwe Maan's avatar Douwe Maan

Move CombinedPipeline methods around

parent 611912fe
......@@ -7,16 +7,18 @@ module Gitlab
Class.new(Pipeline) 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) { |context, pipeline| pipeline.transform_context(context) }
end
def self.pipelines
self::PIPELINES
pipelines.reduce(context) do |context, pipeline|
pipeline.transform_context(context)
end
end
end
end
......
......@@ -3,7 +3,7 @@ require 'gitlab/markdown'
module Gitlab
module Markdown
class FullPipeline < CombinedPipeline.new(PlainMarkdownPipeline, GfmPipeline)
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment