iOS/iPhone/iPad/watchOS/tvOS/MacOSX/Android プログラミング, Objective-C, Cocoa, Swiftなど
シーケンス図のようなダイアグラムを作成するのに便利なツールを紹介する。
インストールは、HomeBrewを利用するのが楽。
$ brew install graphviz
$ brew install plantuml
内容を記載したテキストを以下のコマンドで画像化する。
$ plantuml example.uml
テキストの例。
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
Alice -> Bob: Another authentication Request
Alice <-- Bob: another authentication Response
@enduml