Flowdock
method

matches_dynamic_method?

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActionMailer::Base
matches_dynamic_method?(method_name) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailer/lib/action_mailer/base.rb, line 444
        def matches_dynamic_method?(method_name) #:nodoc:
          method_name = method_name.to_s
          /^(create|deliver)_([_a-z]\w*)/.match(method_name) || /^(new)$/.match(method_name)
        end
Register or log in to add new notes.