From: Ronald Fischer Date: 2007-07-02T18:34:07+09:00 Subject: Re: Accessing functions in a module without 'include' > # 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