├── .gitignore ├── README.md ├── TUTORIAL.md ├── bin └── boomerang-init.js ├── package.json └── templates ├── CydiaIcon.png ├── Release ├── css └── index.css ├── depictions ├── index.html ├── packages │ └── template.json └── screenshots │ └── template │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── index.html └── repo.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | _site/ 3 | test-repo/ 4 | *.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/README.md -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /bin/boomerang-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/bin/boomerang-init.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/package.json -------------------------------------------------------------------------------- /templates/CydiaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/CydiaIcon.png -------------------------------------------------------------------------------- /templates/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/Release -------------------------------------------------------------------------------- /templates/css/index.css: -------------------------------------------------------------------------------- 1 | .repo-icon { 2 | float: left; 3 | vertical-align: middle; 4 | } -------------------------------------------------------------------------------- /templates/depictions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/index.html -------------------------------------------------------------------------------- /templates/depictions/packages/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/packages/template.json -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/1.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/2.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/3.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/4.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/5.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/6.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/7.jpg -------------------------------------------------------------------------------- /templates/depictions/screenshots/template/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/depictions/screenshots/template/8.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jengel3/boomerang/HEAD/templates/repo.sh --------------------------------------------------------------------------------