I know that to use class inheritance in Ruby, the following syntax is used:
class MyNewClass < SomeClass
...
end
I also know that nesting in namespaces is identified using :::
class SomeNameSpace::MyNewClass < SomeNameOtherSpace::SomeClass 
...
end
However, what does the following syntax mean?
class SomeNameSpace::MyNewClass < ::SomeClass 
...
end
I expect that ::SomeClass (so without anything before the ::)is a shorthand for something, but what exactly does it mean?