├── .gitignore ├── Example ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── Main_iPad.storyboard │ └── Main_iPhone.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── RPJSONValidator-Info.plist ├── RPJSONValidator-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── LICENSE ├── README.md ├── RPJSONValidator.podspec ├── RPJSONValidator.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RPJSONValidator ├── RPJSONValidator.h ├── RPJSONValidator.m ├── RPValidatorPredicate.h └── RPValidatorPredicate.m └── RPJSONValidatorTests ├── RPJSONValidatorTests-Info.plist ├── RPJSONValidatorTests.m └── en.lproj └── InfoPlist.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/RPJSONValidator-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/RPJSONValidator-Info.plist -------------------------------------------------------------------------------- /Example/RPJSONValidator-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/RPJSONValidator-Prefix.pch -------------------------------------------------------------------------------- /Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/ViewController.h -------------------------------------------------------------------------------- /Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/ViewController.m -------------------------------------------------------------------------------- /Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/Example/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/README.md -------------------------------------------------------------------------------- /RPJSONValidator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator.podspec -------------------------------------------------------------------------------- /RPJSONValidator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RPJSONValidator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RPJSONValidator/RPJSONValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator/RPJSONValidator.h -------------------------------------------------------------------------------- /RPJSONValidator/RPJSONValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator/RPJSONValidator.m -------------------------------------------------------------------------------- /RPJSONValidator/RPValidatorPredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator/RPValidatorPredicate.h -------------------------------------------------------------------------------- /RPJSONValidator/RPValidatorPredicate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidator/RPValidatorPredicate.m -------------------------------------------------------------------------------- /RPJSONValidatorTests/RPJSONValidatorTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidatorTests/RPJSONValidatorTests-Info.plist -------------------------------------------------------------------------------- /RPJSONValidatorTests/RPJSONValidatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reygonzales/RPJSONValidator/HEAD/RPJSONValidatorTests/RPJSONValidatorTests.m -------------------------------------------------------------------------------- /RPJSONValidatorTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------