Hi, in ruby, :: namespaces the module and class. But I often see :: at the beginning of the class name like the following:
#snippet of gollum gem
def page_class
@page_class ||
if superclass.respond_to?(:page_class)
superclass.page_class
else
::Gollum::Page
end
end
What does that :: stands for if its in the beginning?