method

process?

rails latest stable - Class: CommentVisitor

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

process?(comments)
private

No documentation available.

# File tools/rdoc-to-md, line 120
    def process?(comments)
      return false if comments.empty?

      if comments.any?(&:trailing?)
        return false if comments.all?(&:trailing?)

        raise "only some comments are trailing?"
      end

      true
    end