pocke / rbs_rails

Apache License 2.0
283 stars 33 forks source link

Support signature generation for ActionMailer #270

Open tk0miya opened 1 year ago

tk0miya commented 1 year ago

ActionMailer automatically generates class methods from the instance methods user defined via method_missing. For example, AccountMailer.welcome_mail will be generated from AccountMail#welcome_mail that is defined by users.

This starts to support signature generation for auto-generated class methods for mailer classes dynamically.

tk0miya commented 8 months ago

Now rebased on #274 .