* Florian Frank <flori / nixe.ping.de> [2005-07-26 08:26:21 +0900]:

> class B
>   def f; :g;end
> end
> class B
>   include Mod
> end
> B.new.f # => :g

Thanks Forian. For some reason I always thought that including a mod
would shadow old methods.
I suppose for my method to work (no pun intended), the standard
operating procedure is to:

  class B
    alias :_orig_f
    remove_method :f
    include Mod
  end

I'm a little slow in getting around to these types of things, I'm
surprised I haven't seen an RCR to reduce this to a single line.

-- 
Jim Freeze