method

each_registered_block

each_registered_block(type, &block)
private

No documentation available.

# File railties/lib/rails/railtie.rb, line 242
    def each_registered_block(type, &block)
      klass = self.class
      while klass.respond_to?(type)
        klass.public_send(type).each(&block)
        klass = klass.superclass
      end
    end