├── .gitignore ├── Anglerfish.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Anglerfish.xcscheme ├── Anglerfish ├── Anglerfish.swift ├── DVTDevice.h ├── DVTDeviceManager+Anglerfish.h ├── DVTDeviceManager+Anglerfish.m ├── DVTDeviceManager.h └── Info.plist ├── README.md └── images ├── anglerfish.png ├── banner.png └── simulators.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/.gitignore -------------------------------------------------------------------------------- /Anglerfish.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Anglerfish.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Anglerfish.xcodeproj/xcshareddata/xcschemes/Anglerfish.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish.xcodeproj/xcshareddata/xcschemes/Anglerfish.xcscheme -------------------------------------------------------------------------------- /Anglerfish/Anglerfish.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish/Anglerfish.swift -------------------------------------------------------------------------------- /Anglerfish/DVTDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish/DVTDevice.h -------------------------------------------------------------------------------- /Anglerfish/DVTDeviceManager+Anglerfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish/DVTDeviceManager+Anglerfish.h -------------------------------------------------------------------------------- /Anglerfish/DVTDeviceManager+Anglerfish.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish/DVTDeviceManager+Anglerfish.m -------------------------------------------------------------------------------- /Anglerfish/DVTDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish/DVTDeviceManager.h -------------------------------------------------------------------------------- /Anglerfish/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/Anglerfish/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/README.md -------------------------------------------------------------------------------- /images/anglerfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/images/anglerfish.png -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/simulators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dealforest/Anglerfish/HEAD/images/simulators.png --------------------------------------------------------------------------------