Welcome to mirror list, hosted at ThFree Co, Russian Federation.

filter.rb « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3eb544dfef9620d7a351d69440506c241c24a400 (plain)
1
2
3
4
5
6
7
module Banzai
  module Filter
    def self.[](name)
      const_get("#{name.to_s.camelize}Filter")
    end
  end
end