method

matches_dynamic_method?

rails latest stable - Class: ActionMailer::DeprecatedApi::ClassMethods

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

matches_dynamic_method?(method_name)
private

No documentation available.

# File actionmailer/lib/action_mailer/deprecated_api.rb, line 80
      def matches_dynamic_method?(method_name)
        method_name = method_name.to_s
        /^(create|deliver)_([_a-z]\w*)/.match(method_name) || /^(new)$/.match(method_name)
      end