Let's look at the fact that I have a class inside a very long module path:
sux = Really::Long::Module::Path::Sucks.new
Is there any way to “import” this module so that I can simply use the class without worrying about writing this path every time I use it?
EDIT: I know that being in one module makes things easier. But I cannot be in the same module in this case.
source
share