├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.org ├── concrete.mk ├── doc ├── README.md ├── dev-notes.org └── ej.md ├── include └── ej.hrl ├── rebar.config ├── rebar.config.script ├── src ├── ej.app.src └── ej.erl └── test ├── ej_alt_test.erl ├── ej_dedup_test.erl ├── ej_valid_test.erl ├── glossary.alt_terms ├── glossary.json ├── glossary.terms ├── menu.alt_terms ├── menu.json ├── menu.terms ├── widget.alt_terms ├── widget.json └── widget.terms /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/README.org -------------------------------------------------------------------------------- /concrete.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/concrete.mk -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/dev-notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/doc/dev-notes.org -------------------------------------------------------------------------------- /doc/ej.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/doc/ej.md -------------------------------------------------------------------------------- /include/ej.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/include/ej.hrl -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- 1 | {erl_opts, [debug_info]}. 2 | {cover_enabled, true}. 3 | -------------------------------------------------------------------------------- /rebar.config.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/rebar.config.script -------------------------------------------------------------------------------- /src/ej.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/src/ej.app.src -------------------------------------------------------------------------------- /src/ej.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/src/ej.erl -------------------------------------------------------------------------------- /test/ej_alt_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/ej_alt_test.erl -------------------------------------------------------------------------------- /test/ej_dedup_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/ej_dedup_test.erl -------------------------------------------------------------------------------- /test/ej_valid_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/ej_valid_test.erl -------------------------------------------------------------------------------- /test/glossary.alt_terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/glossary.alt_terms -------------------------------------------------------------------------------- /test/glossary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/glossary.json -------------------------------------------------------------------------------- /test/glossary.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/glossary.terms -------------------------------------------------------------------------------- /test/menu.alt_terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/menu.alt_terms -------------------------------------------------------------------------------- /test/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/menu.json -------------------------------------------------------------------------------- /test/menu.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/menu.terms -------------------------------------------------------------------------------- /test/widget.alt_terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/widget.alt_terms -------------------------------------------------------------------------------- /test/widget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/widget.json -------------------------------------------------------------------------------- /test/widget.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seth/ej/HEAD/test/widget.terms --------------------------------------------------------------------------------