Ironment
Ironment is a simple command line utility for populating the environment of a command by reading particular environment files and then exec-ing. Such environment files may look like the following.
# ./.envrc
FOO=
Any command wrapped with iron will see the environment variables.
$ iron env
FOO=bar
Changelog
0.0.2
- Adding a concept of trust. A file that has never been seen will no longer uncritically be used to populate the environment. Instead, the user will be prompted with its sha1sum and asked if they really want to trust it.
0.0.1
- Initial version. Contains basic support for wrapping commands and populating the environment by recursively reading the directory structure upwards and looking for .envrc files.