diff options
| author | Douwe Maan <douwe@gitlab.com> | 2015-12-15 15:51:16 +0100 |
|---|---|---|
| committer | Douwe Maan <douwe@gitlab.com> | 2015-12-15 15:51:16 +0100 |
| commit | 7781bda9bd82997f4a03de4cf911b1156ceb2cde (patch) | |
| tree | a632a12b295694232205e2190f784f9bb79235ee /lib/banzai/pipeline.rb | |
| parent | 9451db3819ae45734c4343e55a74d347cdacf70d (diff) | |
| download | gitlab-ce-7781bda9bd82997f4a03de4cf911b1156ceb2cde.tar.gz | |
Move Markdown/reference logic from Gitlab::Markdown to Banzai
Diffstat (limited to 'lib/banzai/pipeline.rb')
| -rw-r--r-- | lib/banzai/pipeline.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/banzai/pipeline.rb b/lib/banzai/pipeline.rb new file mode 100644 index 00000000000..4e017809d9d --- /dev/null +++ b/lib/banzai/pipeline.rb @@ -0,0 +1,10 @@ +require 'banzai' + +module Banzai + module Pipeline + def self.[](name) + name ||= :full + const_get("#{name.to_s.camelize}Pipeline") + end + end +end |
