method

interceptor_class_for

interceptor_class_for(interceptor)
private

No documentation available.

# File actionmailer/lib/action_mailer/preview.rb, line 58
        def interceptor_class_for(interceptor)
          case interceptor
          when String, Symbol
            interceptor.to_s.camelize.constantize
          else
            interceptor
          end
        end