スーパークラス節で参照されているモジュールを報告します。

例:

module Engine
  def electric?
    true
  end
end

class Cars < Engine #スーパークラスとして使用されているモジュール
end