├── .gitignore ├── README.md ├── config.json └── squeaky-wheel.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.iws 3 | *.xml 4 | .idea 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpappas/squeaky-wheel/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpappas/squeaky-wheel/HEAD/config.json -------------------------------------------------------------------------------- /squeaky-wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrpappas/squeaky-wheel/HEAD/squeaky-wheel.py --------------------------------------------------------------------------------