├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── plugo ├── config.go ├── config_test.go ├── configurable.go ├── plugin.go └── plugin_test.go ├── scripts ├── build.sh ├── muxy.rb └── test.sh └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/README.md -------------------------------------------------------------------------------- /plugo/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/plugo/config.go -------------------------------------------------------------------------------- /plugo/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/plugo/config_test.go -------------------------------------------------------------------------------- /plugo/configurable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/plugo/configurable.go -------------------------------------------------------------------------------- /plugo/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/plugo/plugin.go -------------------------------------------------------------------------------- /plugo/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/plugo/plugin_test.go -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/muxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/scripts/muxy.rb -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mefellows/plugo/HEAD/wercker.yml --------------------------------------------------------------------------------