├── .formatter.exs ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── coveralls.sh ├── lib ├── edantic.ex └── edantic │ ├── cast_error.ex │ ├── error.ex │ ├── json.ex │ ├── map.ex │ └── spec.ex ├── mix.exs ├── mix.lock └── test ├── edantic ├── cast_error_test.exs ├── error_test.exs └── json_test.exs ├── edantic_test.exs ├── support └── types.ex └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/README.md -------------------------------------------------------------------------------- /coveralls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/coveralls.sh -------------------------------------------------------------------------------- /lib/edantic.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/lib/edantic.ex -------------------------------------------------------------------------------- /lib/edantic/cast_error.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/lib/edantic/cast_error.ex -------------------------------------------------------------------------------- /lib/edantic/error.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/lib/edantic/error.ex -------------------------------------------------------------------------------- /lib/edantic/json.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/lib/edantic/json.ex -------------------------------------------------------------------------------- /lib/edantic/map.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/lib/edantic/map.ex -------------------------------------------------------------------------------- /lib/edantic/spec.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/lib/edantic/spec.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/mix.lock -------------------------------------------------------------------------------- /test/edantic/cast_error_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/test/edantic/cast_error_test.exs -------------------------------------------------------------------------------- /test/edantic/error_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/test/edantic/error_test.exs -------------------------------------------------------------------------------- /test/edantic/json_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/test/edantic/json_test.exs -------------------------------------------------------------------------------- /test/edantic_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/test/edantic_test.exs -------------------------------------------------------------------------------- /test/support/types.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savonarola/edantic/HEAD/test/support/types.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------