├── .gitignore ├── LICENSE ├── README.md ├── pbxproj_structure_check.podspec ├── pbxproj_structure_check.rb ├── readme_imgs ├── readme_img1.png ├── readme_img2.png ├── readme_img3.png ├── readme_img4.png ├── readme_img5.png ├── readme_img6.png ├── readme_img7.png └── readme_img8.png └── tests ├── negativeCases ├── absolutePath ├── buildPath ├── developerPath ├── fakeGroup ├── fakeSubGroup ├── misnamedGroup ├── projectPath ├── realSubGroup ├── sdkPath ├── subGroup └── superGroup ├── positiveCases ├── simpleOK └── subGroupOK └── runTests.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/README.md -------------------------------------------------------------------------------- /pbxproj_structure_check.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/pbxproj_structure_check.podspec -------------------------------------------------------------------------------- /pbxproj_structure_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/pbxproj_structure_check.rb -------------------------------------------------------------------------------- /readme_imgs/readme_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img1.png -------------------------------------------------------------------------------- /readme_imgs/readme_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img2.png -------------------------------------------------------------------------------- /readme_imgs/readme_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img3.png -------------------------------------------------------------------------------- /readme_imgs/readme_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img4.png -------------------------------------------------------------------------------- /readme_imgs/readme_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img5.png -------------------------------------------------------------------------------- /readme_imgs/readme_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img6.png -------------------------------------------------------------------------------- /readme_imgs/readme_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img7.png -------------------------------------------------------------------------------- /readme_imgs/readme_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/readme_imgs/readme_img8.png -------------------------------------------------------------------------------- /tests/negativeCases/absolutePath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/absolutePath -------------------------------------------------------------------------------- /tests/negativeCases/buildPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/buildPath -------------------------------------------------------------------------------- /tests/negativeCases/developerPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/developerPath -------------------------------------------------------------------------------- /tests/negativeCases/fakeGroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/fakeGroup -------------------------------------------------------------------------------- /tests/negativeCases/fakeSubGroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/fakeSubGroup -------------------------------------------------------------------------------- /tests/negativeCases/misnamedGroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/misnamedGroup -------------------------------------------------------------------------------- /tests/negativeCases/projectPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/projectPath -------------------------------------------------------------------------------- /tests/negativeCases/realSubGroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/realSubGroup -------------------------------------------------------------------------------- /tests/negativeCases/sdkPath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/sdkPath -------------------------------------------------------------------------------- /tests/negativeCases/subGroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/subGroup -------------------------------------------------------------------------------- /tests/negativeCases/superGroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/negativeCases/superGroup -------------------------------------------------------------------------------- /tests/positiveCases/simpleOK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/positiveCases/simpleOK -------------------------------------------------------------------------------- /tests/positiveCases/subGroupOK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/positiveCases/subGroupOK -------------------------------------------------------------------------------- /tests/runTests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kam800/pbxproj_structure_check/HEAD/tests/runTests.rb --------------------------------------------------------------------------------