├── .gitignore ├── .gitmodules ├── .travis.yml ├── Contributing.md ├── Documentation └── Images │ ├── CoreDataBrowser.png │ ├── Installing_LinkLibraries.png │ ├── Installing_OtherLinkerFlags.png │ ├── Installing_Subproject.png │ ├── Installing_TargetDependencies.png │ ├── Logo.png │ ├── NetworkDebugging.png │ ├── RemoteLogging.png │ └── ViewHierarchyDebugging.png ├── Examples ├── .gitignore └── PDTestApp │ ├── Default-568h@2x.png │ ├── Icon.png │ ├── Icon@2x.png │ ├── PDTestApp.xcodeproj │ ├── PDTwitterTest.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── project.pbxproj │ ├── PDTestApp │ ├── PDAppDelegate.h │ ├── PDAppDelegate.m │ ├── PDOwner.h │ ├── PDOwner.m │ ├── PDRepo.h │ ├── PDRepo.m │ ├── PDTestApp-Prefix.pch │ ├── PDURLConnectionViewController.h │ ├── PDURLConnectionViewController.m │ ├── PDURLSessionDownloadViewController.h │ ├── PDURLSessionDownloadViewController.m │ ├── PDURLSessionViewController.h │ ├── PDURLSessionViewController.m │ └── main.m │ └── Resources │ ├── InfoPlist.strings │ ├── MainStoryboard.storyboard │ ├── PDTestApp-Info.plist │ └── PDTestApp.xcdatamodeld │ └── PDTestApp.xcdatamodel │ └── contents ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── ObjC ├── DerivedSources │ ├── PDApplicationCacheDomain.h │ ├── PDApplicationCacheDomain.m │ ├── PDApplicationCacheTypes.h │ ├── PDApplicationCacheTypes.m │ ├── PDCSSDomain.h │ ├── PDCSSDomain.m │ ├── PDCSSTypes.h │ ├── PDCSSTypes.m │ ├── PDConsoleDomain.h │ ├── PDConsoleDomain.m │ ├── PDConsoleTypes.h │ ├── PDConsoleTypes.m │ ├── PDDOMDebuggerDomain.h │ ├── PDDOMDebuggerDomain.m │ ├── PDDOMDomain.h │ ├── PDDOMDomain.m │ ├── PDDOMStorageDomain.h │ ├── PDDOMStorageDomain.m │ ├── PDDOMStorageTypes.h │ ├── PDDOMStorageTypes.m │ ├── PDDOMTypes.h │ ├── PDDOMTypes.m │ ├── PDDatabaseDomain.h │ ├── PDDatabaseDomain.m │ ├── PDDatabaseTypes.h │ ├── PDDatabaseTypes.m │ ├── PDDebuggerDomain.h │ ├── PDDebuggerDomain.m │ ├── PDDebuggerTypes.h │ ├── PDDebuggerTypes.m │ ├── PDFileSystemDomain.h │ ├── PDFileSystemDomain.m │ ├── PDFileSystemTypes.h │ ├── PDFileSystemTypes.m │ ├── PDIndexedDBDomain.h │ ├── PDIndexedDBDomain.m │ ├── PDIndexedDBTypes.h │ ├── PDIndexedDBTypes.m │ ├── PDInspectorDomain.h │ ├── PDInspectorDomain.m │ ├── PDMemoryDomain.h │ ├── PDMemoryDomain.m │ ├── PDMemoryTypes.h │ ├── PDMemoryTypes.m │ ├── PDNetworkDomain.h │ ├── PDNetworkDomain.m │ ├── PDNetworkTypes.h │ ├── PDNetworkTypes.m │ ├── PDPageDomain.h │ ├── PDPageDomain.m │ ├── PDPageTypes.h │ ├── PDPageTypes.m │ ├── PDProfilerDomain.h │ ├── PDProfilerDomain.m │ ├── PDProfilerTypes.h │ ├── PDProfilerTypes.m │ ├── PDRuntimeDomain.h │ ├── PDRuntimeDomain.m │ ├── PDRuntimeTypes.h │ ├── PDRuntimeTypes.m │ ├── PDTimelineDomain.h │ ├── PDTimelineDomain.m │ ├── PDTimelineTypes.h │ ├── PDTimelineTypes.m │ ├── PDWebGLDomain.h │ ├── PDWebGLDomain.m │ ├── PDWebGLTypes.h │ ├── PDWebGLTypes.m │ ├── PDWorkerDomain.h │ └── PDWorkerDomain.m ├── PonyDebugger.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── PonyDebugger.xcscheme ├── PonyDebugger │ ├── NSArray+PDRuntimePropertyDescriptor.h │ ├── NSArray+PDRuntimePropertyDescriptor.m │ ├── NSArray+PD_JSONObject.h │ ├── NSArray+PD_JSONObject.m │ ├── NSData+PDDebugger.h │ ├── NSData+PDDebugger.m │ ├── NSDate+PDDebugger.h │ ├── NSDate+PDDebugger.m │ ├── NSDate+PD_JSONObject.h │ ├── NSDate+PD_JSONObject.m │ ├── NSDictionary+PDRuntimePropertyDescriptor.h │ ├── NSDictionary+PDRuntimePropertyDescriptor.m │ ├── NSError+PD_JSONObject.h │ ├── NSError+PD_JSONObject.m │ ├── NSManagedObject+PDRuntimePropertyDescriptor.h │ ├── NSManagedObject+PDRuntimePropertyDescriptor.m │ ├── NSObject+PDRuntimePropertyDescriptor.h │ ├── NSObject+PDRuntimePropertyDescriptor.m │ ├── NSOrderedSet+PDRuntimePropertyDescriptor.h │ ├── NSOrderedSet+PDRuntimePropertyDescriptor.m │ ├── NSSet+PDRuntimePropertyDescriptor.h │ ├── NSSet+PDRuntimePropertyDescriptor.m │ ├── PDConsoleDomainController.h │ ├── PDConsoleDomainController.m │ ├── PDContainerIndex.h │ ├── PDContainerIndex.m │ ├── PDDOMDomainController.h │ ├── PDDOMDomainController.m │ ├── PDDebugger.h │ ├── PDDebugger.m │ ├── PDDefinitions.h │ ├── PDDefinitions.m │ ├── PDDomainController.h │ ├── PDDomainController.m │ ├── PDDynamicDebuggerDomain.h │ ├── PDDynamicDebuggerDomain.m │ ├── PDIndexedDBDomainController.h │ ├── PDIndexedDBDomainController.m │ ├── PDInspectorDomainController.h │ ├── PDInspectorDomainController.m │ ├── PDNetworkDomainController.h │ ├── PDNetworkDomainController.m │ ├── PDObject.h │ ├── PDObject.m │ ├── PDPageDomainController.h │ ├── PDPageDomainController.m │ ├── PDPrettyStringPrinter.h │ ├── PDPrettyStringPrinter.m │ ├── PDRuntimeDomainController.h │ ├── PDRuntimeDomainController.m │ ├── PonyDebugger-Prefix.pch │ └── PonyDebugger.h └── generator │ ├── .gitignore │ ├── README.md │ ├── parser.go │ └── parser_types.go ├── PonyDebugger.podspec ├── README.md ├── README_ponyd.rst ├── ponyd ├── __init__.py ├── argbase.py ├── bonjour.py ├── command.py ├── constants.py ├── downloader.py ├── gateway.py └── web │ ├── .gitignore │ ├── css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.min.css │ └── style.css │ ├── favicon.ico │ ├── index.html │ └── js │ ├── backbone.js │ ├── bootstrap.min.js │ ├── handlebars-1.0.0.beta.6.js │ ├── jquery-1.8.0.min.js │ ├── proxy.js │ └── underscore-min.js ├── scripts ├── .gitignore ├── _bootstrap_contents.py └── create-virtualenv-bootstrap.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/.travis.yml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Contributing.md -------------------------------------------------------------------------------- /Documentation/Images/CoreDataBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/CoreDataBrowser.png -------------------------------------------------------------------------------- /Documentation/Images/Installing_LinkLibraries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/Installing_LinkLibraries.png -------------------------------------------------------------------------------- /Documentation/Images/Installing_OtherLinkerFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/Installing_OtherLinkerFlags.png -------------------------------------------------------------------------------- /Documentation/Images/Installing_Subproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/Installing_Subproject.png -------------------------------------------------------------------------------- /Documentation/Images/Installing_TargetDependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/Installing_TargetDependencies.png -------------------------------------------------------------------------------- /Documentation/Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/Logo.png -------------------------------------------------------------------------------- /Documentation/Images/NetworkDebugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/NetworkDebugging.png -------------------------------------------------------------------------------- /Documentation/Images/RemoteLogging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/RemoteLogging.png -------------------------------------------------------------------------------- /Documentation/Images/ViewHierarchyDebugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Documentation/Images/ViewHierarchyDebugging.png -------------------------------------------------------------------------------- /Examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/.gitignore -------------------------------------------------------------------------------- /Examples/PDTestApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/PDTestApp/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/Icon.png -------------------------------------------------------------------------------- /Examples/PDTestApp/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/Icon@2x.png -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp.xcodeproj/PDTwitterTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp.xcodeproj/PDTwitterTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp.xcodeproj/PDTwitterTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp.xcodeproj/PDTwitterTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDAppDelegate.h -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDAppDelegate.m -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDOwner.h -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDOwner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDOwner.m -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDRepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDRepo.h -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDRepo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDRepo.m -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDTestApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDTestApp-Prefix.pch -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDURLConnectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDURLConnectionViewController.h -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDURLConnectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDURLConnectionViewController.m -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDURLSessionDownloadViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDURLSessionDownloadViewController.h -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDURLSessionDownloadViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDURLSessionDownloadViewController.m -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDURLSessionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDURLSessionViewController.h -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/PDURLSessionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/PDURLSessionViewController.m -------------------------------------------------------------------------------- /Examples/PDTestApp/PDTestApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/PDTestApp/main.m -------------------------------------------------------------------------------- /Examples/PDTestApp/Resources/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/PDTestApp/Resources/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/Resources/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Examples/PDTestApp/Resources/PDTestApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/Resources/PDTestApp-Info.plist -------------------------------------------------------------------------------- /Examples/PDTestApp/Resources/PDTestApp.xcdatamodeld/PDTestApp.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Examples/PDTestApp/Resources/PDTestApp.xcdatamodeld/PDTestApp.xcdatamodel/contents -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'cocoapods' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/LICENSE -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDApplicationCacheDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDApplicationCacheDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDApplicationCacheDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDApplicationCacheDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDApplicationCacheTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDApplicationCacheTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDApplicationCacheTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDApplicationCacheTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDCSSDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDCSSDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDCSSDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDCSSDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDCSSTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDCSSTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDCSSTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDCSSTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDConsoleDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDConsoleDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDConsoleDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDConsoleDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDConsoleTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDConsoleTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDConsoleTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDConsoleTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMDebuggerDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMDebuggerDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMDebuggerDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMDebuggerDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMStorageDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMStorageDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMStorageDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMStorageDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMStorageTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMStorageTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMStorageTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMStorageTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDOMTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDOMTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDatabaseDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDatabaseDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDatabaseDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDatabaseDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDatabaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDatabaseTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDatabaseTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDatabaseTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDebuggerDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDebuggerDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDebuggerDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDebuggerDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDebuggerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDebuggerTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDDebuggerTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDDebuggerTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDFileSystemDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDFileSystemDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDFileSystemDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDFileSystemDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDFileSystemTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDFileSystemTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDFileSystemTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDFileSystemTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDIndexedDBDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDIndexedDBDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDIndexedDBDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDIndexedDBDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDIndexedDBTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDIndexedDBTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDIndexedDBTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDIndexedDBTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDInspectorDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDInspectorDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDInspectorDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDInspectorDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDMemoryDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDMemoryDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDMemoryDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDMemoryDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDMemoryTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDMemoryTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDMemoryTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDMemoryTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDNetworkDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDNetworkDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDNetworkDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDNetworkDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDNetworkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDNetworkTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDNetworkTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDNetworkTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDPageDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDPageDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDPageDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDPageDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDPageTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDPageTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDPageTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDPageTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDProfilerDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDProfilerDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDProfilerDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDProfilerDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDProfilerTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDProfilerTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDProfilerTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDProfilerTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDRuntimeDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDRuntimeDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDRuntimeDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDRuntimeDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDRuntimeTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDRuntimeTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDRuntimeTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDTimelineDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDTimelineDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDTimelineDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDTimelineDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDTimelineTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDTimelineTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDTimelineTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDTimelineTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDWebGLDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDWebGLDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDWebGLDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDWebGLDomain.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDWebGLTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDWebGLTypes.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDWebGLTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDWebGLTypes.m -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDWorkerDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDWorkerDomain.h -------------------------------------------------------------------------------- /ObjC/DerivedSources/PDWorkerDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/DerivedSources/PDWorkerDomain.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ObjC/PonyDebugger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ObjC/PonyDebugger.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ObjC/PonyDebugger.xcodeproj/xcshareddata/xcschemes/PonyDebugger.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger.xcodeproj/xcshareddata/xcschemes/PonyDebugger.xcscheme -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSArray+PDRuntimePropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSArray+PDRuntimePropertyDescriptor.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSArray+PDRuntimePropertyDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSArray+PDRuntimePropertyDescriptor.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSArray+PD_JSONObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSArray+PD_JSONObject.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSArray+PD_JSONObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSArray+PD_JSONObject.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSData+PDDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSData+PDDebugger.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSData+PDDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSData+PDDebugger.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSDate+PDDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSDate+PDDebugger.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSDate+PDDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSDate+PDDebugger.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSDate+PD_JSONObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSDate+PD_JSONObject.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSDate+PD_JSONObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSDate+PD_JSONObject.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSDictionary+PDRuntimePropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSDictionary+PDRuntimePropertyDescriptor.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSDictionary+PDRuntimePropertyDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSDictionary+PDRuntimePropertyDescriptor.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSError+PD_JSONObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSError+PD_JSONObject.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSError+PD_JSONObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSError+PD_JSONObject.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSManagedObject+PDRuntimePropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSManagedObject+PDRuntimePropertyDescriptor.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSManagedObject+PDRuntimePropertyDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSManagedObject+PDRuntimePropertyDescriptor.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSObject+PDRuntimePropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSObject+PDRuntimePropertyDescriptor.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSObject+PDRuntimePropertyDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSObject+PDRuntimePropertyDescriptor.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSOrderedSet+PDRuntimePropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSOrderedSet+PDRuntimePropertyDescriptor.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSOrderedSet+PDRuntimePropertyDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSOrderedSet+PDRuntimePropertyDescriptor.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSSet+PDRuntimePropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSSet+PDRuntimePropertyDescriptor.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/NSSet+PDRuntimePropertyDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/NSSet+PDRuntimePropertyDescriptor.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDConsoleDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDConsoleDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDConsoleDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDConsoleDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDContainerIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDContainerIndex.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDContainerIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDContainerIndex.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDOMDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDOMDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDOMDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDOMDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDebugger.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDebugger.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDefinitions.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDefinitions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDefinitions.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDynamicDebuggerDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDynamicDebuggerDomain.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDDynamicDebuggerDomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDDynamicDebuggerDomain.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDIndexedDBDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDIndexedDBDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDIndexedDBDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDIndexedDBDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDInspectorDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDInspectorDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDInspectorDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDInspectorDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDNetworkDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDNetworkDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDNetworkDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDNetworkDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDObject.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDObject.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDPageDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDPageDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDPageDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDPageDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDPrettyStringPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDPrettyStringPrinter.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDPrettyStringPrinter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDPrettyStringPrinter.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDRuntimeDomainController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDRuntimeDomainController.h -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PDRuntimeDomainController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PDRuntimeDomainController.m -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PonyDebugger-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PonyDebugger-Prefix.pch -------------------------------------------------------------------------------- /ObjC/PonyDebugger/PonyDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/PonyDebugger/PonyDebugger.h -------------------------------------------------------------------------------- /ObjC/generator/.gitignore: -------------------------------------------------------------------------------- 1 | Inspector.json 2 | -------------------------------------------------------------------------------- /ObjC/generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/generator/README.md -------------------------------------------------------------------------------- /ObjC/generator/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/generator/parser.go -------------------------------------------------------------------------------- /ObjC/generator/parser_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ObjC/generator/parser_types.go -------------------------------------------------------------------------------- /PonyDebugger.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/PonyDebugger.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/README.md -------------------------------------------------------------------------------- /README_ponyd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/README_ponyd.rst -------------------------------------------------------------------------------- /ponyd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/__init__.py -------------------------------------------------------------------------------- /ponyd/argbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/argbase.py -------------------------------------------------------------------------------- /ponyd/bonjour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/bonjour.py -------------------------------------------------------------------------------- /ponyd/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/command.py -------------------------------------------------------------------------------- /ponyd/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/constants.py -------------------------------------------------------------------------------- /ponyd/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/downloader.py -------------------------------------------------------------------------------- /ponyd/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/gateway.py -------------------------------------------------------------------------------- /ponyd/web/.gitignore: -------------------------------------------------------------------------------- 1 | devtools/ 2 | -------------------------------------------------------------------------------- /ponyd/web/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /ponyd/web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /ponyd/web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/css/style.css -------------------------------------------------------------------------------- /ponyd/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/favicon.ico -------------------------------------------------------------------------------- /ponyd/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/index.html -------------------------------------------------------------------------------- /ponyd/web/js/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/js/backbone.js -------------------------------------------------------------------------------- /ponyd/web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/js/bootstrap.min.js -------------------------------------------------------------------------------- /ponyd/web/js/handlebars-1.0.0.beta.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/js/handlebars-1.0.0.beta.6.js -------------------------------------------------------------------------------- /ponyd/web/js/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/js/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /ponyd/web/js/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/js/proxy.js -------------------------------------------------------------------------------- /ponyd/web/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/ponyd/web/js/underscore-min.js -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | bootstrap-ponyd.py 2 | -------------------------------------------------------------------------------- /scripts/_bootstrap_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/scripts/_bootstrap_contents.py -------------------------------------------------------------------------------- /scripts/create-virtualenv-bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/scripts/create-virtualenv-bootstrap.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/square/PonyDebugger/HEAD/setup.py --------------------------------------------------------------------------------