├── .gitignore ├── .travis.yml ├── LICENSE ├── NEWS.md ├── NOTICE ├── README.md ├── doc ├── README.md ├── econfig.md ├── edoc-info ├── erlang.png ├── overview.edoc └── stylesheet.css ├── rebar.config ├── rebar.lock ├── src ├── econfig.app.src ├── econfig.erl ├── econfig_app.erl ├── econfig_file_writer.erl ├── econfig_server.erl ├── econfig_sup.erl ├── econfig_util.erl ├── econfig_watcher.erl └── econfig_watcher_sup.erl └── test ├── bootstrap_travis.sh └── fixtures ├── test.ini └── test2.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/econfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/doc/econfig.md -------------------------------------------------------------------------------- /doc/edoc-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/doc/edoc-info -------------------------------------------------------------------------------- /doc/erlang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/doc/erlang.png -------------------------------------------------------------------------------- /doc/overview.edoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/doc/overview.edoc -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- 1 | []. 2 | -------------------------------------------------------------------------------- /src/econfig.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig.app.src -------------------------------------------------------------------------------- /src/econfig.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig.erl -------------------------------------------------------------------------------- /src/econfig_app.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_app.erl -------------------------------------------------------------------------------- /src/econfig_file_writer.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_file_writer.erl -------------------------------------------------------------------------------- /src/econfig_server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_server.erl -------------------------------------------------------------------------------- /src/econfig_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_sup.erl -------------------------------------------------------------------------------- /src/econfig_util.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_util.erl -------------------------------------------------------------------------------- /src/econfig_watcher.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_watcher.erl -------------------------------------------------------------------------------- /src/econfig_watcher_sup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/src/econfig_watcher_sup.erl -------------------------------------------------------------------------------- /test/bootstrap_travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/test/bootstrap_travis.sh -------------------------------------------------------------------------------- /test/fixtures/test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/test/fixtures/test.ini -------------------------------------------------------------------------------- /test/fixtures/test2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benoitc/econfig/HEAD/test/fixtures/test2.ini --------------------------------------------------------------------------------