mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-14 15:16:04 +10:00
9 lines
142 B
Ruby
9 lines
142 B
Ruby
module Banzai
|
|
module Pipeline
|
|
def self.[](name)
|
|
name ||= :full
|
|
const_get("#{name.to_s.camelize}Pipeline")
|
|
end
|
|
end
|
|
end
|