├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── .travis.yml ├── Insider.podspec ├── Insider.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Insider.xcscheme │ ├── InsiderDemo.xcscheme │ └── SwiftLint.xcscheme ├── Insider ├── DeviceInfoService.swift ├── Info.plist ├── Insider.h ├── Insider.swift ├── LocalWebServer.swift └── LocalWebServerResponse.swift ├── InsiderDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LogViewController.h ├── LogViewController.m └── main.m ├── LICENSE ├── Libs ├── GCDWebServer │ ├── Core │ │ ├── GCDWebServer.h │ │ ├── GCDWebServer.m │ │ ├── GCDWebServerConnection.h │ │ ├── GCDWebServerConnection.m │ │ ├── GCDWebServerFunctions.h │ │ ├── GCDWebServerFunctions.m │ │ ├── GCDWebServerHTTPStatusCodes.h │ │ ├── GCDWebServerPrivate.h │ │ ├── GCDWebServerRequest.h │ │ ├── GCDWebServerRequest.m │ │ ├── GCDWebServerResponse.h │ │ └── GCDWebServerResponse.m │ ├── GCDWebUploader.bundle │ │ ├── Info.plist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap.css │ │ │ ├── index.css │ │ │ └── jquery.fileupload.css │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.min.js │ │ │ ├── index.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── jquery.jeditable.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.ui.widget.js │ │ │ ├── respond.min.js │ │ │ └── tmpl.min.js │ ├── GCDWebUploader.h │ ├── GCDWebUploader.m │ ├── LICENSE │ ├── Requests │ │ ├── GCDWebServerDataRequest.h │ │ ├── GCDWebServerDataRequest.m │ │ ├── GCDWebServerFileRequest.h │ │ ├── GCDWebServerFileRequest.m │ │ ├── GCDWebServerMultiPartFormRequest.h │ │ ├── GCDWebServerMultiPartFormRequest.m │ │ ├── GCDWebServerURLEncodedFormRequest.h │ │ └── GCDWebServerURLEncodedFormRequest.m │ └── Responses │ │ ├── GCDWebServerDataResponse.h │ │ ├── GCDWebServerDataResponse.m │ │ ├── GCDWebServerErrorResponse.h │ │ ├── GCDWebServerErrorResponse.m │ │ ├── GCDWebServerFileResponse.h │ │ ├── GCDWebServerFileResponse.m │ │ ├── GCDWebServerStreamedResponse.h │ │ └── GCDWebServerStreamedResponse.m ├── PublicHeaders.h └── System Services │ ├── SystemServices.h │ ├── SystemServices.m │ └── Utilities │ ├── SSAccelerometerInfo.h │ ├── SSAccelerometerInfo.m │ ├── SSAccessoryInfo.h │ ├── SSAccessoryInfo.m │ ├── SSApplicationInfo.h │ ├── SSApplicationInfo.m │ ├── SSBatteryInfo.h │ ├── SSBatteryInfo.m │ ├── SSCarrierInfo.h │ ├── SSCarrierInfo.m │ ├── SSDiskInfo.h │ ├── SSDiskInfo.m │ ├── SSHardwareInfo.h │ ├── SSHardwareInfo.m │ ├── SSJailbreakCheck.h │ ├── SSJailbreakCheck.m │ ├── SSLocalizationInfo.h │ ├── SSLocalizationInfo.m │ ├── SSMemoryInfo.h │ ├── SSMemoryInfo.m │ ├── SSNetworkInfo.h │ ├── SSNetworkInfo.m │ ├── SSProcessInfo.h │ ├── SSProcessInfo.m │ ├── SSProcessorInfo.h │ ├── SSProcessorInfo.m │ ├── SSUUID.h │ ├── SSUUID.m │ └── route.h ├── README.md ├── assets └── sandbox.png ├── docs ├── Classes.html ├── Classes │ └── Insider.html ├── Protocols.html ├── Protocols │ └── InsiderDelegate.html ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── Insider.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ └── Insider.html │ │ │ ├── Protocols.html │ │ │ ├── Protocols │ │ │ │ └── InsiderDelegate.html │ │ │ ├── badge.svg │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ ├── search.json │ │ │ └── undocumented.json │ │ │ └── docSet.dsidx │ └── Insider.tgz ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png ├── index.html ├── js │ ├── jazzy.js │ └── jquery.min.js ├── search.json └── undocumented.json ├── generate-docs.sh └── scripts ├── http_client.rb ├── notification.rb ├── send_message.rb ├── send_message_with_response.rb └── system_info.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/.travis.yml -------------------------------------------------------------------------------- /Insider.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.podspec -------------------------------------------------------------------------------- /Insider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Insider.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Insider.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Insider.xcodeproj/xcshareddata/xcschemes/Insider.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.xcodeproj/xcshareddata/xcschemes/Insider.xcscheme -------------------------------------------------------------------------------- /Insider.xcodeproj/xcshareddata/xcschemes/InsiderDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.xcodeproj/xcshareddata/xcschemes/InsiderDemo.xcscheme -------------------------------------------------------------------------------- /Insider.xcodeproj/xcshareddata/xcschemes/SwiftLint.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider.xcodeproj/xcshareddata/xcschemes/SwiftLint.xcscheme -------------------------------------------------------------------------------- /Insider/DeviceInfoService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider/DeviceInfoService.swift -------------------------------------------------------------------------------- /Insider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider/Info.plist -------------------------------------------------------------------------------- /Insider/Insider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider/Insider.h -------------------------------------------------------------------------------- /Insider/Insider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider/Insider.swift -------------------------------------------------------------------------------- /Insider/LocalWebServer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider/LocalWebServer.swift -------------------------------------------------------------------------------- /Insider/LocalWebServerResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Insider/LocalWebServerResponse.swift -------------------------------------------------------------------------------- /InsiderDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/AppDelegate.h -------------------------------------------------------------------------------- /InsiderDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/AppDelegate.m -------------------------------------------------------------------------------- /InsiderDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InsiderDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InsiderDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InsiderDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/Info.plist -------------------------------------------------------------------------------- /InsiderDemo/LogViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/LogViewController.h -------------------------------------------------------------------------------- /InsiderDemo/LogViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/LogViewController.m -------------------------------------------------------------------------------- /InsiderDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/InsiderDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/LICENSE -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServer.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServer.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerConnection.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerConnection.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerFunctions.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerFunctions.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerHTTPStatusCodes.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerPrivate.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerRequest.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerRequest.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerResponse.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Core/GCDWebServerResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Core/GCDWebServerResponse.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/Info.plist -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/css/bootstrap.css -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/css/index.css -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/css/jquery.fileupload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/css/jquery.fileupload.css -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/index.html -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/bootstrap.min.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/html5shiv.min.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/index.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.fileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.fileupload.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.iframe-transport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.iframe-transport.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.jeditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.jeditable.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.min.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/jquery.ui.widget.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/respond.min.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.bundle/js/tmpl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.bundle/js/tmpl.min.js -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/GCDWebUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/GCDWebUploader.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/LICENSE -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerDataRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerDataRequest.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerDataRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerDataRequest.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerFileRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerFileRequest.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerFileRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerFileRequest.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerMultiPartFormRequest.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Requests/GCDWebServerURLEncodedFormRequest.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerDataResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerDataResponse.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerDataResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerDataResponse.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerErrorResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerErrorResponse.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerErrorResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerErrorResponse.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerFileResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerFileResponse.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerFileResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerFileResponse.m -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerStreamedResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerStreamedResponse.h -------------------------------------------------------------------------------- /Libs/GCDWebServer/Responses/GCDWebServerStreamedResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/GCDWebServer/Responses/GCDWebServerStreamedResponse.m -------------------------------------------------------------------------------- /Libs/PublicHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/PublicHeaders.h -------------------------------------------------------------------------------- /Libs/System Services/SystemServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/SystemServices.h -------------------------------------------------------------------------------- /Libs/System Services/SystemServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/SystemServices.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSAccelerometerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSAccelerometerInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSAccelerometerInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSAccelerometerInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSAccessoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSAccessoryInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSAccessoryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSAccessoryInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSApplicationInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSApplicationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSApplicationInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSBatteryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSBatteryInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSBatteryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSBatteryInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSCarrierInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSCarrierInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSCarrierInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSCarrierInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSDiskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSDiskInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSDiskInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSDiskInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSHardwareInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSHardwareInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSHardwareInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSHardwareInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSJailbreakCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSJailbreakCheck.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSJailbreakCheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSJailbreakCheck.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSLocalizationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSLocalizationInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSLocalizationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSLocalizationInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSMemoryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSMemoryInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSMemoryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSMemoryInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSNetworkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSNetworkInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSNetworkInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSNetworkInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSProcessInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSProcessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSProcessInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSProcessorInfo.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSProcessorInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSProcessorInfo.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSUUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSUUID.h -------------------------------------------------------------------------------- /Libs/System Services/Utilities/SSUUID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/SSUUID.m -------------------------------------------------------------------------------- /Libs/System Services/Utilities/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/Libs/System Services/Utilities/route.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/README.md -------------------------------------------------------------------------------- /assets/sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/assets/sandbox.png -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/Insider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/Classes/Insider.html -------------------------------------------------------------------------------- /docs/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/Protocols.html -------------------------------------------------------------------------------- /docs/Protocols/InsiderDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/Protocols/InsiderDelegate.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/Classes/Insider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/Classes/Insider.html -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/Protocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/Protocols.html -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/Protocols/InsiderDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/Protocols/InsiderDelegate.html -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/badge.svg -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/Documents/undocumented.json -------------------------------------------------------------------------------- /docs/docsets/Insider.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/Insider.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/docsets/Insider.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/generate-docs.sh -------------------------------------------------------------------------------- /scripts/http_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/scripts/http_client.rb -------------------------------------------------------------------------------- /scripts/notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/scripts/notification.rb -------------------------------------------------------------------------------- /scripts/send_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/scripts/send_message.rb -------------------------------------------------------------------------------- /scripts/send_message_with_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/scripts/send_message_with_response.rb -------------------------------------------------------------------------------- /scripts/system_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmx/Insider/HEAD/scripts/system_info.rb --------------------------------------------------------------------------------