├── .ghci ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── bench └── Main.hs ├── bookkeeper.cabal ├── doctest └── Doctest.hs ├── exec └── Readme.lhs ├── package.yaml ├── src ├── Bookkeeper.hs ├── Bookkeeper │ ├── Internal.hs │ ├── Internal │ │ └── Errors.hs │ └── Lens.hs ├── highlight.js └── style.css ├── stack.yaml └── test ├── BookkeeperSpec.hs └── Spec.hs /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/.ghci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /bench/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/bench/Main.hs -------------------------------------------------------------------------------- /bookkeeper.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/bookkeeper.cabal -------------------------------------------------------------------------------- /doctest/Doctest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/doctest/Doctest.hs -------------------------------------------------------------------------------- /exec/Readme.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/exec/Readme.lhs -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/package.yaml -------------------------------------------------------------------------------- /src/Bookkeeper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/src/Bookkeeper.hs -------------------------------------------------------------------------------- /src/Bookkeeper/Internal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/src/Bookkeeper/Internal.hs -------------------------------------------------------------------------------- /src/Bookkeeper/Internal/Errors.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/src/Bookkeeper/Internal/Errors.hs -------------------------------------------------------------------------------- /src/Bookkeeper/Lens.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/src/Bookkeeper/Lens.hs -------------------------------------------------------------------------------- /src/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/src/highlight.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/src/style.css -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/stack.yaml -------------------------------------------------------------------------------- /test/BookkeeperSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turingjump/bookkeeper/HEAD/test/BookkeeperSpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | --------------------------------------------------------------------------------