├── .ert-runner ├── .gitignore ├── .travis.yml ├── Cask ├── LICENSE ├── README.md ├── env.example ├── load-env-vars.el ├── script └── test └── test ├── load-env-vars-test.el └── test-helper.el /.ert-runner: -------------------------------------------------------------------------------- 1 | -L . --reporter ert 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | /.cask/* 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/README.md -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/env.example -------------------------------------------------------------------------------- /load-env-vars.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/load-env-vars.el -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | cask exec ert-runner 6 | -------------------------------------------------------------------------------- /test/load-env-vars-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/test/load-env-vars-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diasjorge/emacs-load-env-vars/HEAD/test/test-helper.el --------------------------------------------------------------------------------