I saw the example in the module_function in the ruby documentation. I do not understand the latter part of the code where Mod.one returns the old "this is one" and the c.one returns the updated "this is the new one". How does this happen

This is the actual code from the documentation

 module Mod
   def one
     "This is one"
   end
   module_function :one
 end

 class Cls
   include Mod
   def call_one
     one
   end
 end

 Mod.one     #=> "This is one"
 c = Cls.new
 c.call_one  #=> "This is one"

 module Mod
   def one
     "This is the new one"
   end
 end

 Mod.one     #=> "This is one"
 c.call_one   #=> "This is the new one"

Why Mod.one returns the old code but the Cls object is able to access the new one? Thanks.

link|improve this question

61% accept rate
1  
I was going to edit the callOne to call_one, except you noted it was like this in the documentation. I'll file a bug report about this at some stage. – Andrew Grimm Mar 1 '11 at 22:39
1  
It's now fixed: redmine.ruby-lang.org/issues/4469 – Andrew Grimm Mar 5 '11 at 21:49
feedback

1 Answer

up vote 2 down vote accepted

Running module_function makes a copy of a function at the module level, that is, it's equivalent to the following code:

module Mod
  def Mod.one
    "This is one"
  end

  def one
    "This is the new one"
  end
end

Mod.one and one are different methods. The first one can be called from anywhere, the second one becomes an instance method when you include the module in a class.

link|improve this answer
Thanks for your explanation. very clear :) – Felix Mar 1 '11 at 13:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.