method
interceptor_class_for
v8.0.0 -
Show latest stable
- Class:
ActionMailer::Previews::ClassMethods
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