├── .gitignore ├── .travis.yml ├── LICENSE ├── NEWS.md ├── NOTICE ├── README.md ├── doc ├── README.md ├── edoc-info ├── erlang.png ├── hlc.md ├── overview.edoc └── stylesheet.css ├── include └── hlc.hrl ├── rebar.config ├── rebar.lock ├── src ├── hlc.app.src └── hlc.erl └── support └── bootstrap_travis.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.1.0 - 2014/11/14 4 | 5 | - initial release 6 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/edoc-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/doc/edoc-info -------------------------------------------------------------------------------- /doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/doc/erlang.png -------------------------------------------------------------------------------- /doc/hlc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/doc/hlc.md -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /include/hlc.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/include/hlc.hrl -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /src/hlc.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/src/hlc.app.src -------------------------------------------------------------------------------- /src/hlc.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/src/hlc.erl -------------------------------------------------------------------------------- /support/bootstrap_travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/barrel-db/hlc/HEAD/support/bootstrap_travis.sh --------------------------------------------------------------------------------