method

convert!

rails latest stable - Class: CodeBlockConverter

Method not available on this version

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

convert!()
public

No documentation available.

# File tools/rdoc-to-md, line 157
  def convert!
    new_source = output

    if @source.include?(MD_DIRECTIVE) || new_source == @source
      $stdout.write "."
    else
      File.write(@file_path, output)
      $stdout.write "C"
    end
  end