サブクラスの親モジュールの名前を取得しようとしています:
module Special
class BaseController
def self.action
puts Module.nesting.inspect # i want this to be relative to self
end
end
end
module Foobar
class Controller < Special::BaseController
action do
# should print Foobar::Controller
end
end
end
基本クラスの代わりにサブクラスの親モジュールを取得するにはどうすればよいですか?