├── .gitattributes ├── Code of Conduct.md ├── License.md ├── Readme.md └── assets ├── mac-pro.png ├── mini-2018.png ├── mini.png └── pro.png /.gitattributes: -------------------------------------------------------------------------------- 1 | Readme.md merge=union 2 | 3 | -------------------------------------------------------------------------------- /Code of Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/Code of Conduct.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/License.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/Readme.md -------------------------------------------------------------------------------- /assets/mac-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/assets/mac-pro.png -------------------------------------------------------------------------------- /assets/mini-2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/assets/mini-2018.png -------------------------------------------------------------------------------- /assets/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/assets/mini.png -------------------------------------------------------------------------------- /assets/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashfurrow/xcode-hardware-performance/HEAD/assets/pro.png --------------------------------------------------------------------------------