I wish to extend ActionMailer::Base by method chaining a class instance
variable:

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/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to