method
interceptor_class_for
rails latest stable - Class:
ActionMailer::Previews::ClassMethods
interceptor_class_for(interceptor)private
No documentation available.
# File actionmailer/lib/action_mailer/preview.rb, line 82
def interceptor_class_for(interceptor)
case interceptor
when String, Symbol
interceptor.to_s.camelize.constantize
else
interceptor
end
end