Subject: Re: Accessing functions in a module without 'include'
From: "Ronald Fischer" <ronald.fischer venyon.com>
Date: Mon, 2 Jul 2007 18:34:07 +0900
References: 257451257466
In-reply-to: 257466
> # Defining a module in one file
> module M
> module_function # <<<<<<<<< HERE
> def f(x)
> ....
> end
> end
Thank you, this is indeed one solution to my problem (though in the
end, I'm going to stick with Michael Hollins' proposal).
Ronald