I\'m writing code in a namespace where the File module exists (inside another module)
And I need to access the ruby File class.
In php this could be done like th
::File
Prefixing with :: accesses the 'root' of the namespace tree.
::