├── .gitignore ├── LICENSE ├── README.rst ├── ginger.h ├── sample.cpp ├── sample.html ├── sample.sh ├── test.cpp └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/README.rst -------------------------------------------------------------------------------- /ginger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/ginger.h -------------------------------------------------------------------------------- /sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/sample.cpp -------------------------------------------------------------------------------- /sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/sample.html -------------------------------------------------------------------------------- /sample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/sample.sh -------------------------------------------------------------------------------- /test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/test.cpp -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melpon/ginger/HEAD/test.sh --------------------------------------------------------------------------------