Why is the ":nodoc:" syntax needed?

Viewed 5905

It seems a lot of libraries/plugins use this syntax:

  def self.included(base) # :nodoc:
    base.extend ClassMethods
  end

Why is the :nodoc: part necessary?

2 Answers
Related