module Helper def do puts "Helper doing" end end module Mod class Main def do puts "Class doing" end end end class XY < Mod::Main include Helper end a = Mod::Main.new a.do b = XY.new b.do