Class: ActionMailer::Base::NullMail
- Inherits:
-
Object
- Object
- ActionMailer::Base::NullMail
show all
- Defined in:
- actionmailer/lib/action_mailer/base.rb
Overview
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(*args) ⇒ Object
657
658
659
|
# File 'actionmailer/lib/action_mailer/base.rb', line 657
def method_missing(*args)
nil
end
|
Instance Method Details
650
|
# File 'actionmailer/lib/action_mailer/base.rb', line 650
def body; "" end
|
651
|
# File 'actionmailer/lib/action_mailer/base.rb', line 651
def ; {} end
|
#respond_to?(string, include_all = false) ⇒ Boolean
653
654
655
|
# File 'actionmailer/lib/action_mailer/base.rb', line 653
def respond_to?(string, include_all = false)
true
end
|