Well, if we are talking about a module, you might be able to include it:
>> module Namespace
>> extend self
>> def some_method
>> puts "Hello!"
>> end
>> end
=> nil
>> Namespace::some_method
Hello!
=> nil
>> include Namespace
=> Object
>> some_method
Hello!
=> nil
Hope that helps.
James Edward Gray II
Thank you very much !!
That's exactely what I was looking for.
(I was using the "require" instruction, and I thought the "include"
instruction was quite similar, that is why I didn't try it...)