Consider the following code:
module ModName
def aux
puts 'aux'
end
end
If we replace module with class, we can do the following:
ModName.new.aux
Modules cannot be instanced, though. Is there a way to call the aux method on the module?