├── .gitignore ├── Makefile ├── README.md ├── effectivescala-cn.mo ├── effectivescala-ja.mo ├── effectivescala-ru.mo ├── effectivescala.mo ├── fmt.sh ├── footer-cn.html.inc ├── footer-jp.html.inc ├── footer-ru.html.inc ├── footer.html.inc ├── header-cn.html.inc ├── header-jp.html.inc ├── header-ru.html.inc ├── header.html.inc ├── proc.sh ├── publish.sh └── toc.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.png 3 | 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/README.md -------------------------------------------------------------------------------- /effectivescala-cn.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/effectivescala-cn.mo -------------------------------------------------------------------------------- /effectivescala-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/effectivescala-ja.mo -------------------------------------------------------------------------------- /effectivescala-ru.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/effectivescala-ru.mo -------------------------------------------------------------------------------- /effectivescala.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/effectivescala.mo -------------------------------------------------------------------------------- /fmt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sed 's;^\.LP \(.*\)$;

\1

;g' 4 | -------------------------------------------------------------------------------- /footer-cn.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/footer-cn.html.inc -------------------------------------------------------------------------------- /footer-jp.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/footer-jp.html.inc -------------------------------------------------------------------------------- /footer-ru.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/footer-ru.html.inc -------------------------------------------------------------------------------- /footer.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/footer.html.inc -------------------------------------------------------------------------------- /header-cn.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/header-cn.html.inc -------------------------------------------------------------------------------- /header-jp.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/header-jp.html.inc -------------------------------------------------------------------------------- /header-ru.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/header-ru.html.inc -------------------------------------------------------------------------------- /header.html.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/header.html.inc -------------------------------------------------------------------------------- /proc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/proc.sh -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/publish.sh -------------------------------------------------------------------------------- /toc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scalajp/effectivescala/HEAD/toc.sh --------------------------------------------------------------------------------