TL;DL
ふとER図が必要になったので、簡単にいい感じに作成できるもの。
またvimでできると便利と思ったので、その記録。
※最低限を目指します
tools
- vim
- NeoBundle
- plantuml
- brew
Let's Try!
まずは準備から
plantumlをinstallします
brew install plantuml
make実行時のscript
plantuml
#!/bin/sh
plantuml -tpng $@
open ${@%%.*}.png
※好きな場所に置いてください
実行権限あげる
sudo chmod 755 ~/file/path/plantuml
vimのpluginをinstall
NeoBundle "aklt/plantuml-syntax"
let g:plantuml_executable_script = "~/file/path/plantuml"
※.vimrcに追記し、再度開いてinstallしてください
ER図を書いてみる
test.uml
@startuml
class Users {
id
email
user_name
}
class Image {
id
url
type
user_id
}
Users ----o| Image
@enduml
適当な場所でfileを作成し、 vimのコマンドモードで :make
を実行する
簡単!便利!