extend adds class methods too
Because classes are objects. So for example:
module Ispeak
def says
"greetings aliens!"
end
end
module Ieat
def eats
"spinach"
end
end
module Inhabitant
def says
"I'm strong to the finish"
end
end
class H...