method

write!

rails latest stable - Class: MetaComment

Method not available on this version

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

write!(out, indentation)
public

No documentation available.

# File tools/rdoc-to-md, line 84
  def write!(out, indentation)
    spaces = " " * indentation

    out << spaces << "##\n"                                # ##
    out << commented(source_lines[1], indentation) << "\n" # # :method: ...

    super
  end