├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config └── config.exs ├── lib ├── excheck.ex └── excheck │ ├── error.ex │ ├── error_agent.ex │ ├── formatter.ex │ ├── generator.ex │ ├── io_server.ex │ ├── predicate.ex │ ├── sample.ex │ └── statement.ex ├── mix.exs ├── mix.lock ├── package.exs └── test ├── error_agent_test.exs ├── excheck_test.exs ├── predicate_test.exs ├── sample_test.exs ├── statement_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/excheck.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck.ex -------------------------------------------------------------------------------- /lib/excheck/error.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/error.ex -------------------------------------------------------------------------------- /lib/excheck/error_agent.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/error_agent.ex -------------------------------------------------------------------------------- /lib/excheck/formatter.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/formatter.ex -------------------------------------------------------------------------------- /lib/excheck/generator.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/generator.ex -------------------------------------------------------------------------------- /lib/excheck/io_server.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/io_server.ex -------------------------------------------------------------------------------- /lib/excheck/predicate.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/predicate.ex -------------------------------------------------------------------------------- /lib/excheck/sample.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/sample.ex -------------------------------------------------------------------------------- /lib/excheck/statement.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/lib/excheck/statement.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/mix.lock -------------------------------------------------------------------------------- /package.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/package.exs -------------------------------------------------------------------------------- /test/error_agent_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/test/error_agent_test.exs -------------------------------------------------------------------------------- /test/excheck_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/test/excheck_test.exs -------------------------------------------------------------------------------- /test/predicate_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/test/predicate_test.exs -------------------------------------------------------------------------------- /test/sample_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/test/sample_test.exs -------------------------------------------------------------------------------- /test/statement_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/test/statement_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parroty/excheck/HEAD/test/test_helper.exs --------------------------------------------------------------------------------