class RuboCop::Cop::Style::Documentation
def include_statement_only?(body)
def include_statement_only?(body) return true if include_statement?(body) body.respond_to?(:children) && body.children.all? { |node| include_statement_only?(node) } end
def include_statement_only?(body) return true if include_statement?(body) body.respond_to?(:children) && body.children.all? { |node| include_statement_only?(node) } end