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