├── .busted ├── .gitattributes ├── CHANGELOG.md ├── README.md ├── hacktrade.lua ├── robots ├── reverse.lua └── spreader.lua ├── templates └── minimal.lua └── tests.lua /.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/.busted -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/.gitattributes -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/README.md -------------------------------------------------------------------------------- /hacktrade.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/hacktrade.lua -------------------------------------------------------------------------------- /robots/reverse.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/robots/reverse.lua -------------------------------------------------------------------------------- /robots/spreader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/robots/spreader.lua -------------------------------------------------------------------------------- /templates/minimal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/templates/minimal.lua -------------------------------------------------------------------------------- /tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffeast/hacktrade/HEAD/tests.lua --------------------------------------------------------------------------------