A
Aryk Grosz
Hi,
I have a module where I include modules as usual:
module A
module B
end
module C
include B
include D
end
module D
end
end
When I require this file, I'll get an error here because module D is
being included before it gets loaded. I would need to put it above
module C to get it to work. How can I load the file, and then do all the
includes so that it can actually find the module.
I have a module where I include modules as usual:
module A
module B
end
module C
include B
include D
end
module D
end
end
When I require this file, I'll get an error here because module D is
being included before it gets loaded. I would need to put it above
module C to get it to work. How can I load the file, and then do all the
includes so that it can actually find the module.