├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── FLAnimatedImage │ ├── FLAnimatedImage │ │ ├── FLAnimatedImage.h │ │ ├── FLAnimatedImage.m │ │ ├── FLAnimatedImageView.h │ │ └── FLAnimatedImageView.m │ ├── LICENSE │ └── README.md ├── Manifest.lock ├── PINCache │ ├── LICENSE.txt │ ├── PINCache │ │ ├── Nullability.h │ │ ├── PINCache.h │ │ ├── PINCache.m │ │ ├── PINCacheObjectSubscripting.h │ │ ├── PINDiskCache.h │ │ ├── PINDiskCache.m │ │ ├── PINMemoryCache.h │ │ └── PINMemoryCache.m │ └── README.md ├── PINRemoteImage │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ ├── Categories │ │ │ ├── NSData+ImageDetectors.h │ │ │ ├── NSData+ImageDetectors.m │ │ │ ├── PINImage+DecodedImage.h │ │ │ ├── PINImage+DecodedImage.m │ │ │ ├── PINImage+WebP.h │ │ │ └── PINImage+WebP.m │ │ │ ├── Image Categories │ │ │ ├── FLAnimatedImageView+PINRemoteImage.h │ │ │ ├── FLAnimatedImageView+PINRemoteImage.m │ │ │ ├── PINButton+PINRemoteImage.h │ │ │ ├── PINButton+PINRemoteImage.m │ │ │ ├── PINImageView+PINRemoteImage.h │ │ │ └── PINImageView+PINRemoteImage.m │ │ │ ├── PINDataTaskOperation.h │ │ │ ├── PINDataTaskOperation.m │ │ │ ├── PINProgressiveImage.h │ │ │ ├── PINProgressiveImage.m │ │ │ ├── PINRemoteImage.h │ │ │ ├── PINRemoteImageCallbacks.h │ │ │ ├── PINRemoteImageCallbacks.m │ │ │ ├── PINRemoteImageCategoryManager.h │ │ │ ├── PINRemoteImageCategoryManager.m │ │ │ ├── PINRemoteImageDownloadTask.h │ │ │ ├── PINRemoteImageDownloadTask.m │ │ │ ├── PINRemoteImageMacros.h │ │ │ ├── PINRemoteImageManager.h │ │ │ ├── PINRemoteImageManager.m │ │ │ ├── PINRemoteImageManagerResult.h │ │ │ ├── PINRemoteImageManagerResult.m │ │ │ ├── PINRemoteImageProcessorTask.h │ │ │ ├── PINRemoteImageProcessorTask.m │ │ │ ├── PINRemoteImageTask.h │ │ │ ├── PINRemoteImageTask.m │ │ │ ├── PINRemoteLock.h │ │ │ ├── PINRemoteLock.m │ │ │ ├── PINURLSessionManager.h │ │ │ └── PINURLSessionManager.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj └── Target Support Files │ ├── FLAnimatedImage │ ├── FLAnimatedImage-dummy.m │ ├── FLAnimatedImage-prefix.pch │ ├── FLAnimatedImage-umbrella.h │ ├── FLAnimatedImage.modulemap │ ├── FLAnimatedImage.xcconfig │ └── Info.plist │ ├── PINCache │ ├── Info.plist │ ├── PINCache-dummy.m │ ├── PINCache-prefix.pch │ ├── PINCache-umbrella.h │ ├── PINCache.modulemap │ └── PINCache.xcconfig │ ├── PINRemoteImage │ ├── Info.plist │ ├── PINRemoteImage-dummy.m │ ├── PINRemoteImage-prefix.pch │ ├── PINRemoteImage-umbrella.h │ ├── PINRemoteImage.modulemap │ └── PINRemoteImage.xcconfig │ └── Pods-dojo-instruments │ ├── Info.plist │ ├── Pods-dojo-instruments-acknowledgements.markdown │ ├── Pods-dojo-instruments-acknowledgements.plist │ ├── Pods-dojo-instruments-dummy.m │ ├── Pods-dojo-instruments-frameworks.sh │ ├── Pods-dojo-instruments-resources.sh │ ├── Pods-dojo-instruments-umbrella.h │ ├── Pods-dojo-instruments.debug.xcconfig │ ├── Pods-dojo-instruments.modulemap │ └── Pods-dojo-instruments.release.xcconfig ├── README.md ├── dojo-instruments.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── dojo-instruments.xcworkspace └── contents.xcworkspacedata └── instruments ├── Allocations.swift ├── AppDelegate.swift ├── Base.lproj └── Main.storyboard ├── Images.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── icon@2x.png │ └── icon@3x.png ├── development.imageset │ ├── Contents.json │ └── development@3x.png ├── siberian16.imageset │ ├── Contents.json │ └── siberian16.png └── siberian18.imageset │ ├── Contents.json │ └── siberian18.png ├── Info.plist ├── LaunchScreen_dev.xib ├── Leaks.swift ├── PINRemoteImage └── Image Categories │ └── UIImageView+PINRemoteImage.m ├── TimeProfile.swift ├── TimeProfileImages.swift └── siberian16.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.h -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImage.m -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.h -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/FLAnimatedImage/FLAnimatedImage/FLAnimatedImageView.m -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/FLAnimatedImage/LICENSE -------------------------------------------------------------------------------- /Pods/FLAnimatedImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/FLAnimatedImage/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/PINCache/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/LICENSE.txt -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/Nullability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/Nullability.h -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINCache.h -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINCache.m -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINCacheObjectSubscripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINCacheObjectSubscripting.h -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINDiskCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINDiskCache.h -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINDiskCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINDiskCache.m -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINMemoryCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINMemoryCache.h -------------------------------------------------------------------------------- /Pods/PINCache/PINCache/PINMemoryCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/PINCache/PINMemoryCache.m -------------------------------------------------------------------------------- /Pods/PINCache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINCache/README.md -------------------------------------------------------------------------------- /Pods/PINRemoteImage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/LICENSE -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Categories/NSData+ImageDetectors.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+DecodedImage.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Categories/PINImage+WebP.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Image Categories/FLAnimatedImageView+PINRemoteImage.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINButton+PINRemoteImage.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/Image Categories/PINImageView+PINRemoteImage.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINDataTaskOperation.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINProgressiveImage.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImage.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCallbacks.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageCategoryManager.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageDownloadTask.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageMacros.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManager.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageManagerResult.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageProcessorTask.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteImageTask.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteLock.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINRemoteLock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINRemoteLock.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.h -------------------------------------------------------------------------------- /Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/Pod/Classes/PINURLSessionManager.m -------------------------------------------------------------------------------- /Pods/PINRemoteImage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/PINRemoteImage/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/FLAnimatedImage/FLAnimatedImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/FLAnimatedImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/FLAnimatedImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PINCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINCache/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PINCache/PINCache-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINCache/PINCache-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PINCache/PINCache-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINCache/PINCache-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PINCache/PINCache-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINCache/PINCache-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PINCache/PINCache.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINCache/PINCache.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PINCache/PINCache.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINCache/PINCache.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PINRemoteImage/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINRemoteImage/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PINRemoteImage/PINRemoteImage-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PINRemoteImage/PINRemoteImage-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PINRemoteImage/PINRemoteImage-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINRemoteImage/PINRemoteImage-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PINRemoteImage/PINRemoteImage.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINRemoteImage/PINRemoteImage.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PINRemoteImage/PINRemoteImage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/PINRemoteImage/PINRemoteImage.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/Pods/Target Support Files/Pods-dojo-instruments/Pods-dojo-instruments.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/README.md -------------------------------------------------------------------------------- /dojo-instruments.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/dojo-instruments.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /dojo-instruments.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/dojo-instruments.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /dojo-instruments.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/dojo-instruments.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /instruments/Allocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Allocations.swift -------------------------------------------------------------------------------- /instruments/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/AppDelegate.swift -------------------------------------------------------------------------------- /instruments/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /instruments/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /instruments/Images.xcassets/AppIcon.appiconset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/AppIcon.appiconset/icon@2x.png -------------------------------------------------------------------------------- /instruments/Images.xcassets/AppIcon.appiconset/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/AppIcon.appiconset/icon@3x.png -------------------------------------------------------------------------------- /instruments/Images.xcassets/development.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/development.imageset/Contents.json -------------------------------------------------------------------------------- /instruments/Images.xcassets/development.imageset/development@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/development.imageset/development@3x.png -------------------------------------------------------------------------------- /instruments/Images.xcassets/siberian16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/siberian16.imageset/Contents.json -------------------------------------------------------------------------------- /instruments/Images.xcassets/siberian16.imageset/siberian16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/siberian16.imageset/siberian16.png -------------------------------------------------------------------------------- /instruments/Images.xcassets/siberian18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/siberian18.imageset/Contents.json -------------------------------------------------------------------------------- /instruments/Images.xcassets/siberian18.imageset/siberian18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Images.xcassets/siberian18.imageset/siberian18.png -------------------------------------------------------------------------------- /instruments/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Info.plist -------------------------------------------------------------------------------- /instruments/LaunchScreen_dev.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/LaunchScreen_dev.xib -------------------------------------------------------------------------------- /instruments/Leaks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/Leaks.swift -------------------------------------------------------------------------------- /instruments/PINRemoteImage/Image Categories/UIImageView+PINRemoteImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/PINRemoteImage/Image Categories/UIImageView+PINRemoteImage.m -------------------------------------------------------------------------------- /instruments/TimeProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/TimeProfile.swift -------------------------------------------------------------------------------- /instruments/TimeProfileImages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/TimeProfileImages.swift -------------------------------------------------------------------------------- /instruments/siberian16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcgraw/dojo-instruments/HEAD/instruments/siberian16.png --------------------------------------------------------------------------------