├── .credo.exs ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── tabula.ex ├── mix.exs ├── mix.lock └── test ├── tabula_test.exs └── test_helper.exs /.credo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/.credo.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /deps 3 | erl_crash.dump 4 | *.ez 5 | /doc 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/README.md -------------------------------------------------------------------------------- /lib/tabula.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/lib/tabula.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/mix.lock -------------------------------------------------------------------------------- /test/tabula_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerosol/Tabula/HEAD/test/tabula_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------