Question
Does Ruby support namespaces?
Answer
A namespace provides a container to hold things like functions, classes and constants as a way to group them together logically and to help avoid conflicts with functions and classes with the same name that have been written by someone else.
In Ruby this is achieved using modules.
In Ruby this is achieved using modules.