├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── Vagrantfile ├── api.go ├── api_test.go ├── cookbooks ├── apt │ ├── CHANGELOG.md │ ├── README.md │ ├── attributes │ │ └── default.rb │ ├── files │ │ └── default │ │ │ └── apt-proxy-v2.conf │ ├── libraries │ │ ├── helpers.rb │ │ └── network.rb │ ├── metadata.json │ ├── metadata.rb │ ├── providers │ │ ├── preference.rb │ │ └── repository.rb │ ├── recipes │ │ ├── cacher-client.rb │ │ ├── cacher-ng.rb │ │ └── default.rb │ ├── resources │ │ ├── preference.rb │ │ └── repository.rb │ └── templates │ │ ├── debian-6.0 │ │ └── acng.conf.erb │ │ ├── default │ │ ├── 01proxy.erb │ │ └── acng.conf.erb │ │ └── ubuntu-10.04 │ │ └── acng.conf.erb ├── deckbrew │ ├── attributes │ │ └── default.rb │ ├── metadata.rb │ ├── recipes │ │ └── database.rb │ └── templates │ │ └── default │ │ ├── brew.list.erb │ │ ├── deckbrew-api.conf.erb │ │ ├── deckbrew-cache.conf.erb │ │ ├── default.vcl.erb │ │ └── goprofile.erb └── tar │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.rb │ ├── providers │ ├── extract.rb │ └── package.rb │ ├── recipes │ └── default.rb │ └── resources │ ├── extract.rb │ └── package.rb ├── database.go ├── etl.go ├── formats ├── commander.json ├── legacy.json ├── modern.json ├── standard.json └── vintage.json ├── mtgjson.go ├── mtgjson_test.go ├── qc.go ├── qc_test.go ├── search.go └── template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/Vagrantfile -------------------------------------------------------------------------------- /api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/api.go -------------------------------------------------------------------------------- /api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/api_test.go -------------------------------------------------------------------------------- /cookbooks/apt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/apt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/README.md -------------------------------------------------------------------------------- /cookbooks/apt/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/apt/files/default/apt-proxy-v2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/files/default/apt-proxy-v2.conf -------------------------------------------------------------------------------- /cookbooks/apt/libraries/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/libraries/helpers.rb -------------------------------------------------------------------------------- /cookbooks/apt/libraries/network.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/libraries/network.rb -------------------------------------------------------------------------------- /cookbooks/apt/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/metadata.json -------------------------------------------------------------------------------- /cookbooks/apt/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/metadata.rb -------------------------------------------------------------------------------- /cookbooks/apt/providers/preference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/providers/preference.rb -------------------------------------------------------------------------------- /cookbooks/apt/providers/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/providers/repository.rb -------------------------------------------------------------------------------- /cookbooks/apt/recipes/cacher-client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/recipes/cacher-client.rb -------------------------------------------------------------------------------- /cookbooks/apt/recipes/cacher-ng.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/recipes/cacher-ng.rb -------------------------------------------------------------------------------- /cookbooks/apt/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/apt/resources/preference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/resources/preference.rb -------------------------------------------------------------------------------- /cookbooks/apt/resources/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/resources/repository.rb -------------------------------------------------------------------------------- /cookbooks/apt/templates/debian-6.0/acng.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/templates/debian-6.0/acng.conf.erb -------------------------------------------------------------------------------- /cookbooks/apt/templates/default/01proxy.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/templates/default/01proxy.erb -------------------------------------------------------------------------------- /cookbooks/apt/templates/default/acng.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/templates/default/acng.conf.erb -------------------------------------------------------------------------------- /cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb -------------------------------------------------------------------------------- /cookbooks/deckbrew/attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/attributes/default.rb -------------------------------------------------------------------------------- /cookbooks/deckbrew/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/metadata.rb -------------------------------------------------------------------------------- /cookbooks/deckbrew/recipes/database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/recipes/database.rb -------------------------------------------------------------------------------- /cookbooks/deckbrew/templates/default/brew.list.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/templates/default/brew.list.erb -------------------------------------------------------------------------------- /cookbooks/deckbrew/templates/default/deckbrew-api.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/templates/default/deckbrew-api.conf.erb -------------------------------------------------------------------------------- /cookbooks/deckbrew/templates/default/deckbrew-cache.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/templates/default/deckbrew-cache.conf.erb -------------------------------------------------------------------------------- /cookbooks/deckbrew/templates/default/default.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/templates/default/default.vcl.erb -------------------------------------------------------------------------------- /cookbooks/deckbrew/templates/default/goprofile.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/deckbrew/templates/default/goprofile.erb -------------------------------------------------------------------------------- /cookbooks/tar/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/CHANGELOG.md -------------------------------------------------------------------------------- /cookbooks/tar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/README.md -------------------------------------------------------------------------------- /cookbooks/tar/metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/metadata.rb -------------------------------------------------------------------------------- /cookbooks/tar/providers/extract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/providers/extract.rb -------------------------------------------------------------------------------- /cookbooks/tar/providers/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/providers/package.rb -------------------------------------------------------------------------------- /cookbooks/tar/recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/recipes/default.rb -------------------------------------------------------------------------------- /cookbooks/tar/resources/extract.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/resources/extract.rb -------------------------------------------------------------------------------- /cookbooks/tar/resources/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/cookbooks/tar/resources/package.rb -------------------------------------------------------------------------------- /database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/database.go -------------------------------------------------------------------------------- /etl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/etl.go -------------------------------------------------------------------------------- /formats/commander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/formats/commander.json -------------------------------------------------------------------------------- /formats/legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/formats/legacy.json -------------------------------------------------------------------------------- /formats/modern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/formats/modern.json -------------------------------------------------------------------------------- /formats/standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/formats/standard.json -------------------------------------------------------------------------------- /formats/vintage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/formats/vintage.json -------------------------------------------------------------------------------- /mtgjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/mtgjson.go -------------------------------------------------------------------------------- /mtgjson_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/mtgjson_test.go -------------------------------------------------------------------------------- /qc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/qc.go -------------------------------------------------------------------------------- /qc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/qc_test.go -------------------------------------------------------------------------------- /search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/search.go -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamebytes/deckbrew-api/HEAD/template.json --------------------------------------------------------------------------------