Module: TokyoMetro::Document::Gviz::RubyGraph

Defined in:
lib/tokyo_metro/document/gviz/ruby_graph.rb

Overview

Ruby のクラス図を生成するためのモジュール

Class Method Summary collapse

Class Method Details

.process(dot_file: true) ⇒ nil

処理を行うメソッド

Parameters:

  • dot_file (Boolean) (defaults to: true)

    .dot ファイルの生成を行うか否かの設定

Returns:

  • (nil)


7
8
9
10
11
12
# File 'lib/tokyo_metro/document/gviz/ruby_graph.rb', line 7

def self.process( dot_file: true )
  if dot_file
    make_dot_file
  end
  return nil
end