├── .shellcheckrc ├── LICENSE ├── Makefile ├── README.md ├── bask ├── package.json └── test ├── bask.bats ├── commands.bats ├── help.bats ├── test_helper.bash └── version.bats /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/README.md -------------------------------------------------------------------------------- /bask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/bask -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/package.json -------------------------------------------------------------------------------- /test/bask.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/test/bask.bats -------------------------------------------------------------------------------- /test/commands.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/test/commands.bats -------------------------------------------------------------------------------- /test/help.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/test/help.bats -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/test/test_helper.bash -------------------------------------------------------------------------------- /test/version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xwmx/bask/HEAD/test/version.bats --------------------------------------------------------------------------------