├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE.txt ├── Makefile ├── README.md ├── dune-project ├── ppx_deriving_crowbar.opam ├── src ├── dune ├── ppx_deriving_crowbar.ml ├── ppx_deriving_crowbar_runtime.ml └── ppx_deriving_crowbar_runtime.mli └── test ├── dune ├── test.expected └── test.ml /.gitignore: -------------------------------------------------------------------------------- 1 | *.install 2 | _build 3 | .merlin 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.3) 2 | (name ppx_deriving_crowbar) 3 | -------------------------------------------------------------------------------- /ppx_deriving_crowbar.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/ppx_deriving_crowbar.opam -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/src/dune -------------------------------------------------------------------------------- /src/ppx_deriving_crowbar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/src/ppx_deriving_crowbar.ml -------------------------------------------------------------------------------- /src/ppx_deriving_crowbar_runtime.ml: -------------------------------------------------------------------------------- 1 | include Ppx_deriving_runtime 2 | -------------------------------------------------------------------------------- /src/ppx_deriving_crowbar_runtime.mli: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/test/dune -------------------------------------------------------------------------------- /test/test.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/test/test.expected -------------------------------------------------------------------------------- /test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yomimono/ppx_deriving_crowbar/HEAD/test/test.ml --------------------------------------------------------------------------------