search for: method_name_with_my_method

Displaying 1 result from an estimated 1 matches for "method_name_with_my_method".

2009 May 06
1
How to extend ActionMailer
...ble: module ActionMailer class Base class << self def method_name ... What is the magic incantation to accomplish this? I cannot get this to work with action mailer: module MyMethods def self.include(base) base.alias_method_chain :method_name, :my_method def method_name_with_my_method ... stuff method_name_without_my_method end ... end class ActionMailer::Base include MyMethods end require ''my_methods'' -- Posted via http://www.ruby-forum.com/.