├── .gitignore ├── .travis.yml ├── README.md ├── _shims └── go ├── env ├── init └── settings ├── functions ├── debug ├── helpers ├── init ├── logging ├── shell └── usage ├── lib ├── init ├── install ├── set ├── system ├── uninstall └── versions ├── rodent ├── rodentrc-sample ├── run-tests.sh ├── share └── releases └── tests ├── bin └── roundup ├── help.def ├── install.def ├── set.def ├── system.def ├── uninstall.def └── versions.def /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/README.md -------------------------------------------------------------------------------- /_shims/go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/_shims/go -------------------------------------------------------------------------------- /env/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/env/init -------------------------------------------------------------------------------- /env/settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/env/settings -------------------------------------------------------------------------------- /functions/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/functions/debug -------------------------------------------------------------------------------- /functions/helpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/functions/helpers -------------------------------------------------------------------------------- /functions/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/functions/init -------------------------------------------------------------------------------- /functions/logging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/functions/logging -------------------------------------------------------------------------------- /functions/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/functions/shell -------------------------------------------------------------------------------- /functions/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/functions/usage -------------------------------------------------------------------------------- /lib/init: -------------------------------------------------------------------------------- 1 | 2 | . "$RODENT_HOME/env/init" 3 | exec "$SHELL" 4 | -------------------------------------------------------------------------------- /lib/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/lib/install -------------------------------------------------------------------------------- /lib/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/lib/set -------------------------------------------------------------------------------- /lib/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/lib/system -------------------------------------------------------------------------------- /lib/uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/lib/uninstall -------------------------------------------------------------------------------- /lib/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/lib/versions -------------------------------------------------------------------------------- /rodent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/rodent -------------------------------------------------------------------------------- /rodentrc-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/rodentrc-sample -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/run-tests.sh -------------------------------------------------------------------------------- /share/releases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/share/releases -------------------------------------------------------------------------------- /tests/bin/roundup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/bin/roundup -------------------------------------------------------------------------------- /tests/help.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/help.def -------------------------------------------------------------------------------- /tests/install.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/install.def -------------------------------------------------------------------------------- /tests/set.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/set.def -------------------------------------------------------------------------------- /tests/system.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/system.def -------------------------------------------------------------------------------- /tests/uninstall.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/uninstall.def -------------------------------------------------------------------------------- /tests/versions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/rodent/HEAD/tests/versions.def --------------------------------------------------------------------------------