summaryrefslogtreecommitdiff
path: root/lib/banzai/filter.rb
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