xcres 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +33 -0
- data/.travis.yml +18 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +85 -0
- data/LICENSE.txt +22 -0
- data/README.md +181 -0
- data/Rakefile +58 -0
- data/bin/xcres +12 -0
- data/lib/xcres/analyzer/aggregate_analyzer.rb +48 -0
- data/lib/xcres/analyzer/analyzer.rb +141 -0
- data/lib/xcres/analyzer/resources_aggregate_analyzer.rb +27 -0
- data/lib/xcres/analyzer/resources_analyzer/base_resources_analyzer.rb +133 -0
- data/lib/xcres/analyzer/resources_analyzer/bundle_resources_analyzer.rb +68 -0
- data/lib/xcres/analyzer/resources_analyzer/loose_resources_analyzer.rb +39 -0
- data/lib/xcres/analyzer/resources_analyzer/xcassets_analyzer.rb +62 -0
- data/lib/xcres/analyzer/strings_analyzer.rb +255 -0
- data/lib/xcres/builder/file_builder.rb +61 -0
- data/lib/xcres/builder/resources_builder.rb +184 -0
- data/lib/xcres/builder/string_builder.rb +31 -0
- data/lib/xcres/command/build_command.rb +83 -0
- data/lib/xcres/command/command.rb +58 -0
- data/lib/xcres/command/install_command.rb +173 -0
- data/lib/xcres/command/main_command.rb +14 -0
- data/lib/xcres/command/project_command.rb +111 -0
- data/lib/xcres/command/version_command.rb +12 -0
- data/lib/xcres/helper/file_helper.rb +16 -0
- data/lib/xcres/logger.rb +148 -0
- data/lib/xcres/model/section.rb +43 -0
- data/lib/xcres/model/xcassets/bundle.rb +55 -0
- data/lib/xcres/model/xcassets/resource.rb +141 -0
- data/lib/xcres/model/xcassets/resource_image.rb +134 -0
- data/lib/xcres/version.rb +9 -0
- data/lib/xcres.rb +9 -0
- data/spec/fixtures/Example/Example/AppDelegate.h +15 -0
- data/spec/fixtures/Example/Example/AppDelegate.m +49 -0
- data/spec/fixtures/Example/Example/Example-Info.plist +38 -0
- data/spec/fixtures/Example/Example/Example-Prefix.pch +16 -0
- data/spec/fixtures/Example/Example/Images/doge.jpeg +0 -0
- data/spec/fixtures/Example/Example/Images/nyanCat.png +0 -0
- data/spec/fixtures/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/fixtures/Example/Example/Images.xcassets/Doge.imageset/Contents.json +18 -0
- data/spec/fixtures/Example/Example/Images.xcassets/Doge.imageset/doge.png +0 -0
- data/spec/fixtures/Example/Example/Images.xcassets/Doge.imageset/doge@2x.png +0 -0
- data/spec/fixtures/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/fixtures/Example/Example/de.lproj/Localizable.strings +12 -0
- data/spec/fixtures/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/fixtures/Example/Example/en.lproj/Localizable.strings +15 -0
- data/spec/fixtures/Example/Example/main.m +18 -0
- data/spec/fixtures/Example/Example.xcodeproj/project.pbxproj +449 -0
- data/spec/fixtures/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/AppDelegate.h +15 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/AppDelegate.m +18 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/Base.lproj/MainMenu.xib +680 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/ExampleOSX-Info.plist +34 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/ExampleOSX-Prefix.pch +9 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/en.lproj/Credits.rtf +29 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/en.lproj/InfoPlist.strings +2 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX/main.m +14 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX.xcodeproj/project.pbxproj +481 -0
- data/spec/fixtures/ExampleOSX/ExampleOSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/ExampleOSX/ExampleOSXTests/ExampleOSXTests-Info.plist +22 -0
- data/spec/fixtures/ExampleOSX/ExampleOSXTests/ExampleOSXTests.m +34 -0
- data/spec/fixtures/ExampleOSX/ExampleOSXTests/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build/after/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/build/after/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/build/after/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/build/after/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/build/after/Example/Example/Icons.bundle/tab_bar/tabbar_list.png +0 -0
- data/spec/integration/build/after/Example/Example/Icons.bundle/tab_bar/tabbar_list@2x.png +0 -0
- data/spec/integration/build/after/Example/Example/Icons.bundle/tab_bar/tabbar_map.png +0 -0
- data/spec/integration/build/after/Example/Example/Icons.bundle/tab_bar/tabbar_map@2x.png +0 -0
- data/spec/integration/build/after/Example/Example/Images/doge.jpeg +0 -0
- data/spec/integration/build/after/Example/Example/Images/nyanCat.png +0 -0
- data/spec/integration/build/after/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/build/after/Example/Example/Images.xcassets/Doge.imageset/Contents.json +18 -0
- data/spec/integration/build/after/Example/Example/Images.xcassets/Doge.imageset/doge.png +0 -0
- data/spec/integration/build/after/Example/Example/Images.xcassets/Doge.imageset/doge@2x.png +0 -0
- data/spec/integration/build/after/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/build/after/Example/Example/de.lproj/Localizable.strings +12 -0
- data/spec/integration/build/after/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build/after/Example/Example/en.lproj/Localizable.strings +15 -0
- data/spec/integration/build/after/Example/Example/main.m +18 -0
- data/spec/integration/build/after/Example/Example.xcodeproj.yaml +168 -0
- data/spec/integration/build/after/R.h +39 -0
- data/spec/integration/build/after/R.m +29 -0
- data/spec/integration/build/after/execution_output.txt +19 -0
- data/spec/integration/build/before/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/build/before/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/build/before/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/build/before/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/build/before/Example/Example/Icons.bundle/tab_bar/tabbar_list.png +0 -0
- data/spec/integration/build/before/Example/Example/Icons.bundle/tab_bar/tabbar_list@2x.png +0 -0
- data/spec/integration/build/before/Example/Example/Icons.bundle/tab_bar/tabbar_map.png +0 -0
- data/spec/integration/build/before/Example/Example/Icons.bundle/tab_bar/tabbar_map@2x.png +0 -0
- data/spec/integration/build/before/Example/Example/Images/doge.jpeg +0 -0
- data/spec/integration/build/before/Example/Example/Images/nyanCat.png +0 -0
- data/spec/integration/build/before/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/build/before/Example/Example/Images.xcassets/Doge.imageset/Contents.json +18 -0
- data/spec/integration/build/before/Example/Example/Images.xcassets/Doge.imageset/doge.png +0 -0
- data/spec/integration/build/before/Example/Example/Images.xcassets/Doge.imageset/doge@2x.png +0 -0
- data/spec/integration/build/before/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/build/before/Example/Example/de.lproj/Localizable.strings +12 -0
- data/spec/integration/build/before/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build/before/Example/Example/en.lproj/Localizable.strings +15 -0
- data/spec/integration/build/before/Example/Example/main.m +18 -0
- data/spec/integration/build/before/Example/Example.xcodeproj/project.pbxproj +453 -0
- data/spec/integration/build/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/Default-568h@2x.png +0 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/Default.png +0 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/Default@2x.png +0 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build-keyword-clash/after/Example/Example/main.m +18 -0
- data/spec/integration/build-keyword-clash/after/Example/Example.xcodeproj.yaml +160 -0
- data/spec/integration/build-keyword-clash/after/R.h +15 -0
- data/spec/integration/build-keyword-clash/after/R.m +15 -0
- data/spec/integration/build-keyword-clash/after/execution_output.txt +14 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/Default-568h@2x.png +0 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/Default.png +0 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/Default@2x.png +0 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build-keyword-clash/before/Example/Example/main.m +18 -0
- data/spec/integration/build-keyword-clash/before/Example/Example.xcodeproj/project.pbxproj +427 -0
- data/spec/integration/build-keyword-clash/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Icons.bundle/tab_bar/tabbar_list.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Icons.bundle/tab_bar/tabbar_list@2x.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Icons.bundle/tab_bar/tabbar_map.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Icons.bundle/tab_bar/tabbar_map@2x.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images/doge.jpeg +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images/nyanCat.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images.xcassets/Doge.imageset/Contents.json +18 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images.xcassets/Doge.imageset/doge.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images.xcassets/Doge.imageset/doge@2x.png +0 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/de.lproj/Localizable.strings +12 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/en.lproj/Localizable.strings +15 -0
- data/spec/integration/build-var-infoplist/after/Example/Example/main.m +18 -0
- data/spec/integration/build-var-infoplist/after/Example/Example.xcodeproj.yaml +168 -0
- data/spec/integration/build-var-infoplist/after/R.h +39 -0
- data/spec/integration/build-var-infoplist/after/R.m +29 -0
- data/spec/integration/build-var-infoplist/after/execution_output.txt +19 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Icons.bundle/tab_bar/tabbar_list.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Icons.bundle/tab_bar/tabbar_list@2x.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Icons.bundle/tab_bar/tabbar_map.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Icons.bundle/tab_bar/tabbar_map@2x.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images/doge.jpeg +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images/nyanCat.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images.xcassets/Doge.imageset/Contents.json +18 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images.xcassets/Doge.imageset/doge.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images.xcassets/Doge.imageset/doge@2x.png +0 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/de.lproj/Localizable.strings +12 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/en.lproj/Localizable.strings +15 -0
- data/spec/integration/build-var-infoplist/before/Example/Example/main.m +18 -0
- data/spec/integration/build-var-infoplist/before/Example/Example.xcodeproj/project.pbxproj +453 -0
- data/spec/integration/build-var-infoplist/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/help/after/execution_output.txt +18 -0
- data/spec/integration/help/before/.gitkeep +0 -0
- data/spec/integration/install/after/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/install/after/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/install/after/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/install/after/Example/Example/Example-Prefix.pch +18 -0
- data/spec/integration/install/after/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install/after/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install/after/Example/Example/Resources/R.h +19 -0
- data/spec/integration/install/after/Example/Example/Resources/R.m +17 -0
- data/spec/integration/install/after/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install/after/Example/Example/main.m +18 -0
- data/spec/integration/install/after/Example/Example.xcodeproj/project.pbxproj +898 -0
- data/spec/integration/install/after/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/install/after/Example/Example.xcodeproj.yaml +172 -0
- data/spec/integration/install/after/execution_output.txt +22 -0
- data/spec/integration/install/before/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/install/before/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/install/before/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/install/before/Example/Example/Example-Prefix.pch +16 -0
- data/spec/integration/install/before/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install/before/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install/before/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install/before/Example/Example/main.m +18 -0
- data/spec/integration/install/before/Example/Example.xcodeproj/project.pbxproj +421 -0
- data/spec/integration/install/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/install-again/after/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/install-again/after/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/install-again/after/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/install-again/after/Example/Example/Example-Prefix.pch +18 -0
- data/spec/integration/install-again/after/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install-again/after/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install-again/after/Example/Example/Resources/R.h +19 -0
- data/spec/integration/install-again/after/Example/Example/Resources/R.m +17 -0
- data/spec/integration/install-again/after/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install-again/after/Example/Example/main.m +18 -0
- data/spec/integration/install-again/after/Example/Example.xcodeproj.yaml +172 -0
- data/spec/integration/install-again/after/execution_output.txt +23 -0
- data/spec/integration/install-again/before/Example/Example/AppDelegate.h +15 -0
- data/spec/integration/install-again/before/Example/Example/AppDelegate.m +49 -0
- data/spec/integration/install-again/before/Example/Example/Example-Info.plist +38 -0
- data/spec/integration/install-again/before/Example/Example/Example-Prefix.pch +18 -0
- data/spec/integration/install-again/before/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install-again/before/Example/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install-again/before/Example/Example/Resources/R.h +19 -0
- data/spec/integration/install-again/before/Example/Example/Resources/R.m +17 -0
- data/spec/integration/install-again/before/Example/Example/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install-again/before/Example/Example/main.m +18 -0
- data/spec/integration/install-again/before/Example/Example.xcodeproj/project.pbxproj +898 -0
- data/spec/integration/install-again/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Example.xcodeproj.yaml +173 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Supporting_Files/Example-Info.plist +38 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Supporting_Files/Example-Prefix.pch +18 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Supporting_Files/Resources/R.h +19 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Supporting_Files/Resources/R.m +17 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Supporting_Files/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install-moved-supporting-files/after/Example/Supporting_Files/main.m +18 -0
- data/spec/integration/install-moved-supporting-files/after/Example/res/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install-moved-supporting-files/after/Example/res/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install-moved-supporting-files/after/Example/src/AppDelegate.h +15 -0
- data/spec/integration/install-moved-supporting-files/after/Example/src/AppDelegate.m +49 -0
- data/spec/integration/install-moved-supporting-files/after/execution_output.txt +22 -0
- data/spec/integration/install-moved-supporting-files/before/Example/Example.xcodeproj/project.pbxproj +431 -0
- data/spec/integration/install-moved-supporting-files/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/install-moved-supporting-files/before/Example/Supporting_Files/Example-Info.plist +38 -0
- data/spec/integration/install-moved-supporting-files/before/Example/Supporting_Files/Example-Prefix.pch +16 -0
- data/spec/integration/install-moved-supporting-files/before/Example/Supporting_Files/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install-moved-supporting-files/before/Example/Supporting_Files/main.m +18 -0
- data/spec/integration/install-moved-supporting-files/before/Example/res/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install-moved-supporting-files/before/Example/res/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install-moved-supporting-files/before/Example/src/AppDelegate.h +15 -0
- data/spec/integration/install-moved-supporting-files/before/Example/src/AppDelegate.m +49 -0
- data/spec/integration/install-no-supporting-files/after/Example/Example.xcodeproj.yaml +173 -0
- data/spec/integration/install-no-supporting-files/after/Example/Resources/R.h +19 -0
- data/spec/integration/install-no-supporting-files/after/Example/Resources/R.m +17 -0
- data/spec/integration/install-no-supporting-files/after/Example/Supporting_Files/Example-Info.plist +38 -0
- data/spec/integration/install-no-supporting-files/after/Example/Supporting_Files/Example-Prefix.pch +18 -0
- data/spec/integration/install-no-supporting-files/after/Example/Supporting_Files/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install-no-supporting-files/after/Example/Supporting_Files/main.m +18 -0
- data/spec/integration/install-no-supporting-files/after/Example/res/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install-no-supporting-files/after/Example/res/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install-no-supporting-files/after/Example/src/AppDelegate.h +15 -0
- data/spec/integration/install-no-supporting-files/after/Example/src/AppDelegate.m +49 -0
- data/spec/integration/install-no-supporting-files/after/execution_output.txt +23 -0
- data/spec/integration/install-no-supporting-files/before/Example/Example.xcodeproj/project.pbxproj +430 -0
- data/spec/integration/install-no-supporting-files/before/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/integration/install-no-supporting-files/before/Example/Supporting_Files/Example-Info.plist +38 -0
- data/spec/integration/install-no-supporting-files/before/Example/Supporting_Files/Example-Prefix.pch +16 -0
- data/spec/integration/install-no-supporting-files/before/Example/Supporting_Files/en.lproj/InfoPlist.strings +2 -0
- data/spec/integration/install-no-supporting-files/before/Example/Supporting_Files/main.m +18 -0
- data/spec/integration/install-no-supporting-files/before/Example/res/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
- data/spec/integration/install-no-supporting-files/before/Example/res/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
- data/spec/integration/install-no-supporting-files/before/Example/src/AppDelegate.h +15 -0
- data/spec/integration/install-no-supporting-files/before/Example/src/AppDelegate.m +49 -0
- data/spec/integration/version/after/execution_output.txt +3 -0
- data/spec/integration/version/before/.gitkeep +0 -0
- data/spec/integration.rb +86 -0
- data/spec/spec_helper/xcodeproj_project_yaml.rb +26 -0
- data/spec/unit/analyzer/aggregate_analyzer_spec.rb +61 -0
- data/spec/unit/analyzer/analyzer_spec.rb +123 -0
- data/spec/unit/analyzer/resources_aggregate_analyzer_spec.rb +46 -0
- data/spec/unit/analyzer/resources_analyzer/base_resources_analyzer_spec.rb +126 -0
- data/spec/unit/analyzer/resources_analyzer/bundle_resources_analyzer_spec.rb +57 -0
- data/spec/unit/analyzer/resources_analyzer/loose_resources_analyzer_spec.rb +22 -0
- data/spec/unit/analyzer/strings_analyzer_spec.rb +99 -0
- data/spec/unit/builder/file_builder_spec.rb +46 -0
- data/spec/unit/builder/resources_builder_spec.rb +50 -0
- data/spec/unit/builder/string_builder_spec.rb +76 -0
- data/spec/unit/command/main_command_spec.rb +5 -0
- data/spec/unit/command/project_command_spec.rb +23 -0
- data/spec/unit/helper/file_helper_spec.rb +24 -0
- data/spec/unit/logger_spec.rb +142 -0
- data/spec/unit/model/section_spec.rb +47 -0
- data/spec/unit/model/xcassets/bundle_spec.rb +154 -0
- data/spec/unit/model/xcassets/resource_image_spec.rb +141 -0
- data/spec/unit/model/xcassets/resource_spec.rb +174 -0
- data/spec/unit/model/xcassets/spec_helper.rb +31 -0
- data/spec/unit/spec_helper.rb +17 -0
- data/xcres.gemspec +42 -0
- metadata +811 -0
|
@@ -0,0 +1,898 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>archiveVersion</key>
|
|
6
|
+
<string>1</string>
|
|
7
|
+
<key>classes</key>
|
|
8
|
+
<dict/>
|
|
9
|
+
<key>objectVersion</key>
|
|
10
|
+
<string>46</string>
|
|
11
|
+
<key>objects</key>
|
|
12
|
+
<dict>
|
|
13
|
+
<key>34EED71554CF45FB9FDD6EE6</key>
|
|
14
|
+
<dict>
|
|
15
|
+
<key>buildActionMask</key>
|
|
16
|
+
<string>2147483647</string>
|
|
17
|
+
<key>files</key>
|
|
18
|
+
<array/>
|
|
19
|
+
<key>inputPaths</key>
|
|
20
|
+
<array/>
|
|
21
|
+
<key>isa</key>
|
|
22
|
+
<string>PBXShellScriptBuildPhase</string>
|
|
23
|
+
<key>name</key>
|
|
24
|
+
<string>Build Resource-Index</string>
|
|
25
|
+
<key>outputPaths</key>
|
|
26
|
+
<array/>
|
|
27
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
28
|
+
<string>0</string>
|
|
29
|
+
<key>shellPath</key>
|
|
30
|
+
<string>/bin/sh</string>
|
|
31
|
+
<key>shellScript</key>
|
|
32
|
+
<string>xcres build $PROJECT_FILE_PATH $SRCROOT/Example/Resources/R
|
|
33
|
+
</string>
|
|
34
|
+
<key>showEnvVarsInLog</key>
|
|
35
|
+
<string>1</string>
|
|
36
|
+
</dict>
|
|
37
|
+
<key>71239D9B1912BFF70058657F</key>
|
|
38
|
+
<dict>
|
|
39
|
+
<key>children</key>
|
|
40
|
+
<array>
|
|
41
|
+
<string>71239DAD1912BFF70058657F</string>
|
|
42
|
+
<string>71239DA61912BFF70058657F</string>
|
|
43
|
+
<string>71239DA51912BFF70058657F</string>
|
|
44
|
+
</array>
|
|
45
|
+
<key>isa</key>
|
|
46
|
+
<string>PBXGroup</string>
|
|
47
|
+
<key>sourceTree</key>
|
|
48
|
+
<string><group></string>
|
|
49
|
+
</dict>
|
|
50
|
+
<key>71239D9C1912BFF70058657F</key>
|
|
51
|
+
<dict>
|
|
52
|
+
<key>attributes</key>
|
|
53
|
+
<dict>
|
|
54
|
+
<key>LastUpgradeCheck</key>
|
|
55
|
+
<string>0510</string>
|
|
56
|
+
<key>ORGANIZATIONNAME</key>
|
|
57
|
+
<string>XCRes</string>
|
|
58
|
+
<key>TargetAttributes</key>
|
|
59
|
+
<dict>
|
|
60
|
+
<key>71239DBE1912BFF80058657F</key>
|
|
61
|
+
<dict>
|
|
62
|
+
<key>TestTargetID</key>
|
|
63
|
+
<string>71239DA31912BFF70058657F</string>
|
|
64
|
+
</dict>
|
|
65
|
+
</dict>
|
|
66
|
+
</dict>
|
|
67
|
+
<key>buildConfigurationList</key>
|
|
68
|
+
<string>71239D9F1912BFF70058657F</string>
|
|
69
|
+
<key>compatibilityVersion</key>
|
|
70
|
+
<string>Xcode 3.2</string>
|
|
71
|
+
<key>developmentRegion</key>
|
|
72
|
+
<string>English</string>
|
|
73
|
+
<key>hasScannedForEncodings</key>
|
|
74
|
+
<string>0</string>
|
|
75
|
+
<key>isa</key>
|
|
76
|
+
<string>PBXProject</string>
|
|
77
|
+
<key>knownRegions</key>
|
|
78
|
+
<array>
|
|
79
|
+
<string>en</string>
|
|
80
|
+
<string>de</string>
|
|
81
|
+
</array>
|
|
82
|
+
<key>mainGroup</key>
|
|
83
|
+
<string>71239D9B1912BFF70058657F</string>
|
|
84
|
+
<key>productRefGroup</key>
|
|
85
|
+
<string>71239DA51912BFF70058657F</string>
|
|
86
|
+
<key>projectDirPath</key>
|
|
87
|
+
<string></string>
|
|
88
|
+
<key>projectReferences</key>
|
|
89
|
+
<array/>
|
|
90
|
+
<key>projectRoot</key>
|
|
91
|
+
<string></string>
|
|
92
|
+
<key>targets</key>
|
|
93
|
+
<array>
|
|
94
|
+
<string>71239DA31912BFF70058657F</string>
|
|
95
|
+
<string>71239DBE1912BFF80058657F</string>
|
|
96
|
+
</array>
|
|
97
|
+
</dict>
|
|
98
|
+
<key>71239D9F1912BFF70058657F</key>
|
|
99
|
+
<dict>
|
|
100
|
+
<key>buildConfigurations</key>
|
|
101
|
+
<array>
|
|
102
|
+
<string>71239DCE1912BFF80058657F</string>
|
|
103
|
+
<string>71239DCF1912BFF80058657F</string>
|
|
104
|
+
</array>
|
|
105
|
+
<key>defaultConfigurationIsVisible</key>
|
|
106
|
+
<string>0</string>
|
|
107
|
+
<key>defaultConfigurationName</key>
|
|
108
|
+
<string>Release</string>
|
|
109
|
+
<key>isa</key>
|
|
110
|
+
<string>XCConfigurationList</string>
|
|
111
|
+
</dict>
|
|
112
|
+
<key>71239DA01912BFF70058657F</key>
|
|
113
|
+
<dict>
|
|
114
|
+
<key>buildActionMask</key>
|
|
115
|
+
<string>2147483647</string>
|
|
116
|
+
<key>files</key>
|
|
117
|
+
<array>
|
|
118
|
+
<string>71239DB81912BFF80058657F</string>
|
|
119
|
+
<string>71239DB41912BFF80058657F</string>
|
|
120
|
+
<string>E073540CB75F4AE79DA160A8</string>
|
|
121
|
+
</array>
|
|
122
|
+
<key>isa</key>
|
|
123
|
+
<string>PBXSourcesBuildPhase</string>
|
|
124
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
125
|
+
<string>0</string>
|
|
126
|
+
</dict>
|
|
127
|
+
<key>71239DA11912BFF70058657F</key>
|
|
128
|
+
<dict>
|
|
129
|
+
<key>buildActionMask</key>
|
|
130
|
+
<string>2147483647</string>
|
|
131
|
+
<key>files</key>
|
|
132
|
+
<array>
|
|
133
|
+
<string>71239DAA1912BFF70058657F</string>
|
|
134
|
+
<string>71239DAC1912BFF70058657F</string>
|
|
135
|
+
<string>71239DA81912BFF70058657F</string>
|
|
136
|
+
</array>
|
|
137
|
+
<key>isa</key>
|
|
138
|
+
<string>PBXFrameworksBuildPhase</string>
|
|
139
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
140
|
+
<string>0</string>
|
|
141
|
+
</dict>
|
|
142
|
+
<key>71239DA21912BFF70058657F</key>
|
|
143
|
+
<dict>
|
|
144
|
+
<key>buildActionMask</key>
|
|
145
|
+
<string>2147483647</string>
|
|
146
|
+
<key>files</key>
|
|
147
|
+
<array>
|
|
148
|
+
<string>71239DB21912BFF80058657F</string>
|
|
149
|
+
<string>71239DBA1912BFF80058657F</string>
|
|
150
|
+
</array>
|
|
151
|
+
<key>isa</key>
|
|
152
|
+
<string>PBXResourcesBuildPhase</string>
|
|
153
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
154
|
+
<string>0</string>
|
|
155
|
+
</dict>
|
|
156
|
+
<key>71239DA31912BFF70058657F</key>
|
|
157
|
+
<dict>
|
|
158
|
+
<key>buildConfigurationList</key>
|
|
159
|
+
<string>71239DD01912BFF80058657F</string>
|
|
160
|
+
<key>buildPhases</key>
|
|
161
|
+
<array>
|
|
162
|
+
<string>34EED71554CF45FB9FDD6EE6</string>
|
|
163
|
+
<string>71239DA01912BFF70058657F</string>
|
|
164
|
+
<string>71239DA11912BFF70058657F</string>
|
|
165
|
+
<string>71239DA21912BFF70058657F</string>
|
|
166
|
+
</array>
|
|
167
|
+
<key>buildRules</key>
|
|
168
|
+
<array/>
|
|
169
|
+
<key>dependencies</key>
|
|
170
|
+
<array/>
|
|
171
|
+
<key>isa</key>
|
|
172
|
+
<string>PBXNativeTarget</string>
|
|
173
|
+
<key>name</key>
|
|
174
|
+
<string>Example</string>
|
|
175
|
+
<key>productName</key>
|
|
176
|
+
<string>Example</string>
|
|
177
|
+
<key>productReference</key>
|
|
178
|
+
<string>71239DA41912BFF70058657F</string>
|
|
179
|
+
<key>productType</key>
|
|
180
|
+
<string>com.apple.product-type.application</string>
|
|
181
|
+
</dict>
|
|
182
|
+
<key>71239DA41912BFF70058657F</key>
|
|
183
|
+
<dict>
|
|
184
|
+
<key>explicitFileType</key>
|
|
185
|
+
<string>wrapper.application</string>
|
|
186
|
+
<key>includeInIndex</key>
|
|
187
|
+
<string>0</string>
|
|
188
|
+
<key>isa</key>
|
|
189
|
+
<string>PBXFileReference</string>
|
|
190
|
+
<key>path</key>
|
|
191
|
+
<string>Example.app</string>
|
|
192
|
+
<key>sourceTree</key>
|
|
193
|
+
<string>BUILT_PRODUCTS_DIR</string>
|
|
194
|
+
</dict>
|
|
195
|
+
<key>71239DA51912BFF70058657F</key>
|
|
196
|
+
<dict>
|
|
197
|
+
<key>children</key>
|
|
198
|
+
<array>
|
|
199
|
+
<string>71239DA41912BFF70058657F</string>
|
|
200
|
+
<string>71239DBF1912BFF80058657F</string>
|
|
201
|
+
</array>
|
|
202
|
+
<key>isa</key>
|
|
203
|
+
<string>PBXGroup</string>
|
|
204
|
+
<key>name</key>
|
|
205
|
+
<string>Products</string>
|
|
206
|
+
<key>sourceTree</key>
|
|
207
|
+
<string><group></string>
|
|
208
|
+
</dict>
|
|
209
|
+
<key>71239DA61912BFF70058657F</key>
|
|
210
|
+
<dict>
|
|
211
|
+
<key>children</key>
|
|
212
|
+
<array>
|
|
213
|
+
<string>71239DA71912BFF70058657F</string>
|
|
214
|
+
<string>71239DA91912BFF70058657F</string>
|
|
215
|
+
<string>71239DAB1912BFF70058657F</string>
|
|
216
|
+
<string>71239DC01912BFF80058657F</string>
|
|
217
|
+
</array>
|
|
218
|
+
<key>isa</key>
|
|
219
|
+
<string>PBXGroup</string>
|
|
220
|
+
<key>name</key>
|
|
221
|
+
<string>Frameworks</string>
|
|
222
|
+
<key>sourceTree</key>
|
|
223
|
+
<string><group></string>
|
|
224
|
+
</dict>
|
|
225
|
+
<key>71239DA71912BFF70058657F</key>
|
|
226
|
+
<dict>
|
|
227
|
+
<key>isa</key>
|
|
228
|
+
<string>PBXFileReference</string>
|
|
229
|
+
<key>lastKnownFileType</key>
|
|
230
|
+
<string>wrapper.framework</string>
|
|
231
|
+
<key>name</key>
|
|
232
|
+
<string>Foundation.framework</string>
|
|
233
|
+
<key>path</key>
|
|
234
|
+
<string>System/Library/Frameworks/Foundation.framework</string>
|
|
235
|
+
<key>sourceTree</key>
|
|
236
|
+
<string>SDKROOT</string>
|
|
237
|
+
</dict>
|
|
238
|
+
<key>71239DA81912BFF70058657F</key>
|
|
239
|
+
<dict>
|
|
240
|
+
<key>fileRef</key>
|
|
241
|
+
<string>71239DA71912BFF70058657F</string>
|
|
242
|
+
<key>isa</key>
|
|
243
|
+
<string>PBXBuildFile</string>
|
|
244
|
+
</dict>
|
|
245
|
+
<key>71239DA91912BFF70058657F</key>
|
|
246
|
+
<dict>
|
|
247
|
+
<key>isa</key>
|
|
248
|
+
<string>PBXFileReference</string>
|
|
249
|
+
<key>lastKnownFileType</key>
|
|
250
|
+
<string>wrapper.framework</string>
|
|
251
|
+
<key>name</key>
|
|
252
|
+
<string>CoreGraphics.framework</string>
|
|
253
|
+
<key>path</key>
|
|
254
|
+
<string>System/Library/Frameworks/CoreGraphics.framework</string>
|
|
255
|
+
<key>sourceTree</key>
|
|
256
|
+
<string>SDKROOT</string>
|
|
257
|
+
</dict>
|
|
258
|
+
<key>71239DAA1912BFF70058657F</key>
|
|
259
|
+
<dict>
|
|
260
|
+
<key>fileRef</key>
|
|
261
|
+
<string>71239DA91912BFF70058657F</string>
|
|
262
|
+
<key>isa</key>
|
|
263
|
+
<string>PBXBuildFile</string>
|
|
264
|
+
</dict>
|
|
265
|
+
<key>71239DAB1912BFF70058657F</key>
|
|
266
|
+
<dict>
|
|
267
|
+
<key>isa</key>
|
|
268
|
+
<string>PBXFileReference</string>
|
|
269
|
+
<key>lastKnownFileType</key>
|
|
270
|
+
<string>wrapper.framework</string>
|
|
271
|
+
<key>name</key>
|
|
272
|
+
<string>UIKit.framework</string>
|
|
273
|
+
<key>path</key>
|
|
274
|
+
<string>System/Library/Frameworks/UIKit.framework</string>
|
|
275
|
+
<key>sourceTree</key>
|
|
276
|
+
<string>SDKROOT</string>
|
|
277
|
+
</dict>
|
|
278
|
+
<key>71239DAC1912BFF70058657F</key>
|
|
279
|
+
<dict>
|
|
280
|
+
<key>fileRef</key>
|
|
281
|
+
<string>71239DAB1912BFF70058657F</string>
|
|
282
|
+
<key>isa</key>
|
|
283
|
+
<string>PBXBuildFile</string>
|
|
284
|
+
</dict>
|
|
285
|
+
<key>71239DAD1912BFF70058657F</key>
|
|
286
|
+
<dict>
|
|
287
|
+
<key>children</key>
|
|
288
|
+
<array>
|
|
289
|
+
<string>71239DB61912BFF80058657F</string>
|
|
290
|
+
<string>71239DB71912BFF80058657F</string>
|
|
291
|
+
<string>71239DB91912BFF80058657F</string>
|
|
292
|
+
<string>71239DAE1912BFF70058657F</string>
|
|
293
|
+
</array>
|
|
294
|
+
<key>isa</key>
|
|
295
|
+
<string>PBXGroup</string>
|
|
296
|
+
<key>path</key>
|
|
297
|
+
<string>Example</string>
|
|
298
|
+
<key>sourceTree</key>
|
|
299
|
+
<string><group></string>
|
|
300
|
+
</dict>
|
|
301
|
+
<key>71239DAE1912BFF70058657F</key>
|
|
302
|
+
<dict>
|
|
303
|
+
<key>children</key>
|
|
304
|
+
<array>
|
|
305
|
+
<string>71239DAF1912BFF70058657F</string>
|
|
306
|
+
<string>71239DB01912BFF70058657F</string>
|
|
307
|
+
<string>71239DB31912BFF80058657F</string>
|
|
308
|
+
<string>71239DB51912BFF80058657F</string>
|
|
309
|
+
<string>D0D577CD72364216A4D13217</string>
|
|
310
|
+
</array>
|
|
311
|
+
<key>isa</key>
|
|
312
|
+
<string>PBXGroup</string>
|
|
313
|
+
<key>name</key>
|
|
314
|
+
<string>Supporting Files</string>
|
|
315
|
+
<key>sourceTree</key>
|
|
316
|
+
<string><group></string>
|
|
317
|
+
</dict>
|
|
318
|
+
<key>71239DAF1912BFF70058657F</key>
|
|
319
|
+
<dict>
|
|
320
|
+
<key>isa</key>
|
|
321
|
+
<string>PBXFileReference</string>
|
|
322
|
+
<key>lastKnownFileType</key>
|
|
323
|
+
<string>text.plist.xml</string>
|
|
324
|
+
<key>path</key>
|
|
325
|
+
<string>Example-Info.plist</string>
|
|
326
|
+
<key>sourceTree</key>
|
|
327
|
+
<string><group></string>
|
|
328
|
+
</dict>
|
|
329
|
+
<key>71239DB01912BFF70058657F</key>
|
|
330
|
+
<dict>
|
|
331
|
+
<key>children</key>
|
|
332
|
+
<array>
|
|
333
|
+
<string>71239DB11912BFF80058657F</string>
|
|
334
|
+
</array>
|
|
335
|
+
<key>isa</key>
|
|
336
|
+
<string>PBXVariantGroup</string>
|
|
337
|
+
<key>name</key>
|
|
338
|
+
<string>InfoPlist.strings</string>
|
|
339
|
+
<key>sourceTree</key>
|
|
340
|
+
<string><group></string>
|
|
341
|
+
</dict>
|
|
342
|
+
<key>71239DB11912BFF80058657F</key>
|
|
343
|
+
<dict>
|
|
344
|
+
<key>isa</key>
|
|
345
|
+
<string>PBXFileReference</string>
|
|
346
|
+
<key>lastKnownFileType</key>
|
|
347
|
+
<string>text.plist.strings</string>
|
|
348
|
+
<key>name</key>
|
|
349
|
+
<string>en</string>
|
|
350
|
+
<key>path</key>
|
|
351
|
+
<string>en.lproj/InfoPlist.strings</string>
|
|
352
|
+
<key>sourceTree</key>
|
|
353
|
+
<string><group></string>
|
|
354
|
+
</dict>
|
|
355
|
+
<key>71239DB21912BFF80058657F</key>
|
|
356
|
+
<dict>
|
|
357
|
+
<key>fileRef</key>
|
|
358
|
+
<string>71239DB01912BFF70058657F</string>
|
|
359
|
+
<key>isa</key>
|
|
360
|
+
<string>PBXBuildFile</string>
|
|
361
|
+
</dict>
|
|
362
|
+
<key>71239DB31912BFF80058657F</key>
|
|
363
|
+
<dict>
|
|
364
|
+
<key>isa</key>
|
|
365
|
+
<string>PBXFileReference</string>
|
|
366
|
+
<key>lastKnownFileType</key>
|
|
367
|
+
<string>sourcecode.c.objc</string>
|
|
368
|
+
<key>path</key>
|
|
369
|
+
<string>main.m</string>
|
|
370
|
+
<key>sourceTree</key>
|
|
371
|
+
<string><group></string>
|
|
372
|
+
</dict>
|
|
373
|
+
<key>71239DB41912BFF80058657F</key>
|
|
374
|
+
<dict>
|
|
375
|
+
<key>fileRef</key>
|
|
376
|
+
<string>71239DB31912BFF80058657F</string>
|
|
377
|
+
<key>isa</key>
|
|
378
|
+
<string>PBXBuildFile</string>
|
|
379
|
+
</dict>
|
|
380
|
+
<key>71239DB51912BFF80058657F</key>
|
|
381
|
+
<dict>
|
|
382
|
+
<key>isa</key>
|
|
383
|
+
<string>PBXFileReference</string>
|
|
384
|
+
<key>lastKnownFileType</key>
|
|
385
|
+
<string>sourcecode.c.h</string>
|
|
386
|
+
<key>path</key>
|
|
387
|
+
<string>Example-Prefix.pch</string>
|
|
388
|
+
<key>sourceTree</key>
|
|
389
|
+
<string><group></string>
|
|
390
|
+
</dict>
|
|
391
|
+
<key>71239DB61912BFF80058657F</key>
|
|
392
|
+
<dict>
|
|
393
|
+
<key>isa</key>
|
|
394
|
+
<string>PBXFileReference</string>
|
|
395
|
+
<key>lastKnownFileType</key>
|
|
396
|
+
<string>sourcecode.c.h</string>
|
|
397
|
+
<key>path</key>
|
|
398
|
+
<string>AppDelegate.h</string>
|
|
399
|
+
<key>sourceTree</key>
|
|
400
|
+
<string><group></string>
|
|
401
|
+
</dict>
|
|
402
|
+
<key>71239DB71912BFF80058657F</key>
|
|
403
|
+
<dict>
|
|
404
|
+
<key>isa</key>
|
|
405
|
+
<string>PBXFileReference</string>
|
|
406
|
+
<key>lastKnownFileType</key>
|
|
407
|
+
<string>sourcecode.c.objc</string>
|
|
408
|
+
<key>path</key>
|
|
409
|
+
<string>AppDelegate.m</string>
|
|
410
|
+
<key>sourceTree</key>
|
|
411
|
+
<string><group></string>
|
|
412
|
+
</dict>
|
|
413
|
+
<key>71239DB81912BFF80058657F</key>
|
|
414
|
+
<dict>
|
|
415
|
+
<key>fileRef</key>
|
|
416
|
+
<string>71239DB71912BFF80058657F</string>
|
|
417
|
+
<key>isa</key>
|
|
418
|
+
<string>PBXBuildFile</string>
|
|
419
|
+
</dict>
|
|
420
|
+
<key>71239DB91912BFF80058657F</key>
|
|
421
|
+
<dict>
|
|
422
|
+
<key>isa</key>
|
|
423
|
+
<string>PBXFileReference</string>
|
|
424
|
+
<key>lastKnownFileType</key>
|
|
425
|
+
<string>folder.assetcatalog</string>
|
|
426
|
+
<key>path</key>
|
|
427
|
+
<string>Images.xcassets</string>
|
|
428
|
+
<key>sourceTree</key>
|
|
429
|
+
<string><group></string>
|
|
430
|
+
</dict>
|
|
431
|
+
<key>71239DBA1912BFF80058657F</key>
|
|
432
|
+
<dict>
|
|
433
|
+
<key>fileRef</key>
|
|
434
|
+
<string>71239DB91912BFF80058657F</string>
|
|
435
|
+
<key>isa</key>
|
|
436
|
+
<string>PBXBuildFile</string>
|
|
437
|
+
</dict>
|
|
438
|
+
<key>71239DBB1912BFF80058657F</key>
|
|
439
|
+
<dict>
|
|
440
|
+
<key>buildActionMask</key>
|
|
441
|
+
<string>2147483647</string>
|
|
442
|
+
<key>files</key>
|
|
443
|
+
<array/>
|
|
444
|
+
<key>isa</key>
|
|
445
|
+
<string>PBXSourcesBuildPhase</string>
|
|
446
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
447
|
+
<string>0</string>
|
|
448
|
+
</dict>
|
|
449
|
+
<key>71239DBC1912BFF80058657F</key>
|
|
450
|
+
<dict>
|
|
451
|
+
<key>buildActionMask</key>
|
|
452
|
+
<string>2147483647</string>
|
|
453
|
+
<key>files</key>
|
|
454
|
+
<array>
|
|
455
|
+
<string>71239DC11912BFF80058657F</string>
|
|
456
|
+
<string>71239DC31912BFF80058657F</string>
|
|
457
|
+
<string>71239DC21912BFF80058657F</string>
|
|
458
|
+
</array>
|
|
459
|
+
<key>isa</key>
|
|
460
|
+
<string>PBXFrameworksBuildPhase</string>
|
|
461
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
462
|
+
<string>0</string>
|
|
463
|
+
</dict>
|
|
464
|
+
<key>71239DBD1912BFF80058657F</key>
|
|
465
|
+
<dict>
|
|
466
|
+
<key>buildActionMask</key>
|
|
467
|
+
<string>2147483647</string>
|
|
468
|
+
<key>files</key>
|
|
469
|
+
<array/>
|
|
470
|
+
<key>isa</key>
|
|
471
|
+
<string>PBXResourcesBuildPhase</string>
|
|
472
|
+
<key>runOnlyForDeploymentPostprocessing</key>
|
|
473
|
+
<string>0</string>
|
|
474
|
+
</dict>
|
|
475
|
+
<key>71239DBE1912BFF80058657F</key>
|
|
476
|
+
<dict>
|
|
477
|
+
<key>buildConfigurationList</key>
|
|
478
|
+
<string>71239DD31912BFF80058657F</string>
|
|
479
|
+
<key>buildPhases</key>
|
|
480
|
+
<array>
|
|
481
|
+
<string>71239DBB1912BFF80058657F</string>
|
|
482
|
+
<string>71239DBC1912BFF80058657F</string>
|
|
483
|
+
<string>71239DBD1912BFF80058657F</string>
|
|
484
|
+
</array>
|
|
485
|
+
<key>buildRules</key>
|
|
486
|
+
<array/>
|
|
487
|
+
<key>dependencies</key>
|
|
488
|
+
<array>
|
|
489
|
+
<string>71239DC51912BFF80058657F</string>
|
|
490
|
+
</array>
|
|
491
|
+
<key>isa</key>
|
|
492
|
+
<string>PBXNativeTarget</string>
|
|
493
|
+
<key>name</key>
|
|
494
|
+
<string>ExampleTests</string>
|
|
495
|
+
<key>productName</key>
|
|
496
|
+
<string>ExampleTests</string>
|
|
497
|
+
<key>productReference</key>
|
|
498
|
+
<string>71239DBF1912BFF80058657F</string>
|
|
499
|
+
<key>productType</key>
|
|
500
|
+
<string>com.apple.product-type.bundle.unit-test</string>
|
|
501
|
+
</dict>
|
|
502
|
+
<key>71239DBF1912BFF80058657F</key>
|
|
503
|
+
<dict>
|
|
504
|
+
<key>explicitFileType</key>
|
|
505
|
+
<string>wrapper.cfbundle</string>
|
|
506
|
+
<key>includeInIndex</key>
|
|
507
|
+
<string>0</string>
|
|
508
|
+
<key>isa</key>
|
|
509
|
+
<string>PBXFileReference</string>
|
|
510
|
+
<key>path</key>
|
|
511
|
+
<string>ExampleTests.xctest</string>
|
|
512
|
+
<key>sourceTree</key>
|
|
513
|
+
<string>BUILT_PRODUCTS_DIR</string>
|
|
514
|
+
</dict>
|
|
515
|
+
<key>71239DC01912BFF80058657F</key>
|
|
516
|
+
<dict>
|
|
517
|
+
<key>isa</key>
|
|
518
|
+
<string>PBXFileReference</string>
|
|
519
|
+
<key>lastKnownFileType</key>
|
|
520
|
+
<string>wrapper.framework</string>
|
|
521
|
+
<key>name</key>
|
|
522
|
+
<string>XCTest.framework</string>
|
|
523
|
+
<key>path</key>
|
|
524
|
+
<string>Library/Frameworks/XCTest.framework</string>
|
|
525
|
+
<key>sourceTree</key>
|
|
526
|
+
<string>DEVELOPER_DIR</string>
|
|
527
|
+
</dict>
|
|
528
|
+
<key>71239DC11912BFF80058657F</key>
|
|
529
|
+
<dict>
|
|
530
|
+
<key>fileRef</key>
|
|
531
|
+
<string>71239DC01912BFF80058657F</string>
|
|
532
|
+
<key>isa</key>
|
|
533
|
+
<string>PBXBuildFile</string>
|
|
534
|
+
</dict>
|
|
535
|
+
<key>71239DC21912BFF80058657F</key>
|
|
536
|
+
<dict>
|
|
537
|
+
<key>fileRef</key>
|
|
538
|
+
<string>71239DA71912BFF70058657F</string>
|
|
539
|
+
<key>isa</key>
|
|
540
|
+
<string>PBXBuildFile</string>
|
|
541
|
+
</dict>
|
|
542
|
+
<key>71239DC31912BFF80058657F</key>
|
|
543
|
+
<dict>
|
|
544
|
+
<key>fileRef</key>
|
|
545
|
+
<string>71239DAB1912BFF70058657F</string>
|
|
546
|
+
<key>isa</key>
|
|
547
|
+
<string>PBXBuildFile</string>
|
|
548
|
+
</dict>
|
|
549
|
+
<key>71239DC41912BFF80058657F</key>
|
|
550
|
+
<dict>
|
|
551
|
+
<key>containerPortal</key>
|
|
552
|
+
<string>71239D9C1912BFF70058657F</string>
|
|
553
|
+
<key>isa</key>
|
|
554
|
+
<string>PBXContainerItemProxy</string>
|
|
555
|
+
<key>proxyType</key>
|
|
556
|
+
<string>1</string>
|
|
557
|
+
<key>remoteGlobalIDString</key>
|
|
558
|
+
<string>71239DA31912BFF70058657F</string>
|
|
559
|
+
<key>remoteInfo</key>
|
|
560
|
+
<string>Example</string>
|
|
561
|
+
</dict>
|
|
562
|
+
<key>71239DC51912BFF80058657F</key>
|
|
563
|
+
<dict>
|
|
564
|
+
<key>isa</key>
|
|
565
|
+
<string>PBXTargetDependency</string>
|
|
566
|
+
<key>target</key>
|
|
567
|
+
<string>71239DA31912BFF70058657F</string>
|
|
568
|
+
<key>targetProxy</key>
|
|
569
|
+
<string>71239DC41912BFF80058657F</string>
|
|
570
|
+
</dict>
|
|
571
|
+
<key>71239DCE1912BFF80058657F</key>
|
|
572
|
+
<dict>
|
|
573
|
+
<key>buildSettings</key>
|
|
574
|
+
<dict>
|
|
575
|
+
<key>ALWAYS_SEARCH_USER_PATHS</key>
|
|
576
|
+
<string>NO</string>
|
|
577
|
+
<key>CLANG_CXX_LANGUAGE_STANDARD</key>
|
|
578
|
+
<string>gnu++0x</string>
|
|
579
|
+
<key>CLANG_CXX_LIBRARY</key>
|
|
580
|
+
<string>libc++</string>
|
|
581
|
+
<key>CLANG_ENABLE_MODULES</key>
|
|
582
|
+
<string>YES</string>
|
|
583
|
+
<key>CLANG_ENABLE_OBJC_ARC</key>
|
|
584
|
+
<string>YES</string>
|
|
585
|
+
<key>CLANG_WARN_BOOL_CONVERSION</key>
|
|
586
|
+
<string>YES</string>
|
|
587
|
+
<key>CLANG_WARN_CONSTANT_CONVERSION</key>
|
|
588
|
+
<string>YES</string>
|
|
589
|
+
<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
|
|
590
|
+
<string>YES_ERROR</string>
|
|
591
|
+
<key>CLANG_WARN_EMPTY_BODY</key>
|
|
592
|
+
<string>YES</string>
|
|
593
|
+
<key>CLANG_WARN_ENUM_CONVERSION</key>
|
|
594
|
+
<string>YES</string>
|
|
595
|
+
<key>CLANG_WARN_INT_CONVERSION</key>
|
|
596
|
+
<string>YES</string>
|
|
597
|
+
<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
|
|
598
|
+
<string>YES_ERROR</string>
|
|
599
|
+
<key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
|
|
600
|
+
<string>YES</string>
|
|
601
|
+
<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
|
|
602
|
+
<string>iPhone Developer</string>
|
|
603
|
+
<key>COPY_PHASE_STRIP</key>
|
|
604
|
+
<string>NO</string>
|
|
605
|
+
<key>GCC_C_LANGUAGE_STANDARD</key>
|
|
606
|
+
<string>gnu99</string>
|
|
607
|
+
<key>GCC_DYNAMIC_NO_PIC</key>
|
|
608
|
+
<string>NO</string>
|
|
609
|
+
<key>GCC_OPTIMIZATION_LEVEL</key>
|
|
610
|
+
<string>0</string>
|
|
611
|
+
<key>GCC_PREPROCESSOR_DEFINITIONS</key>
|
|
612
|
+
<array>
|
|
613
|
+
<string>DEBUG=1</string>
|
|
614
|
+
<string>$(inherited)</string>
|
|
615
|
+
</array>
|
|
616
|
+
<key>GCC_SYMBOLS_PRIVATE_EXTERN</key>
|
|
617
|
+
<string>NO</string>
|
|
618
|
+
<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
|
|
619
|
+
<string>YES</string>
|
|
620
|
+
<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
|
|
621
|
+
<string>YES_ERROR</string>
|
|
622
|
+
<key>GCC_WARN_UNDECLARED_SELECTOR</key>
|
|
623
|
+
<string>YES</string>
|
|
624
|
+
<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
|
|
625
|
+
<string>YES_AGGRESSIVE</string>
|
|
626
|
+
<key>GCC_WARN_UNUSED_FUNCTION</key>
|
|
627
|
+
<string>YES</string>
|
|
628
|
+
<key>GCC_WARN_UNUSED_VARIABLE</key>
|
|
629
|
+
<string>YES</string>
|
|
630
|
+
<key>IPHONEOS_DEPLOYMENT_TARGET</key>
|
|
631
|
+
<string>7.1</string>
|
|
632
|
+
<key>ONLY_ACTIVE_ARCH</key>
|
|
633
|
+
<string>YES</string>
|
|
634
|
+
<key>SDKROOT</key>
|
|
635
|
+
<string>iphoneos</string>
|
|
636
|
+
</dict>
|
|
637
|
+
<key>isa</key>
|
|
638
|
+
<string>XCBuildConfiguration</string>
|
|
639
|
+
<key>name</key>
|
|
640
|
+
<string>Debug</string>
|
|
641
|
+
</dict>
|
|
642
|
+
<key>71239DCF1912BFF80058657F</key>
|
|
643
|
+
<dict>
|
|
644
|
+
<key>buildSettings</key>
|
|
645
|
+
<dict>
|
|
646
|
+
<key>ALWAYS_SEARCH_USER_PATHS</key>
|
|
647
|
+
<string>NO</string>
|
|
648
|
+
<key>CLANG_CXX_LANGUAGE_STANDARD</key>
|
|
649
|
+
<string>gnu++0x</string>
|
|
650
|
+
<key>CLANG_CXX_LIBRARY</key>
|
|
651
|
+
<string>libc++</string>
|
|
652
|
+
<key>CLANG_ENABLE_MODULES</key>
|
|
653
|
+
<string>YES</string>
|
|
654
|
+
<key>CLANG_ENABLE_OBJC_ARC</key>
|
|
655
|
+
<string>YES</string>
|
|
656
|
+
<key>CLANG_WARN_BOOL_CONVERSION</key>
|
|
657
|
+
<string>YES</string>
|
|
658
|
+
<key>CLANG_WARN_CONSTANT_CONVERSION</key>
|
|
659
|
+
<string>YES</string>
|
|
660
|
+
<key>CLANG_WARN_DIRECT_OBJC_ISA_USAGE</key>
|
|
661
|
+
<string>YES_ERROR</string>
|
|
662
|
+
<key>CLANG_WARN_EMPTY_BODY</key>
|
|
663
|
+
<string>YES</string>
|
|
664
|
+
<key>CLANG_WARN_ENUM_CONVERSION</key>
|
|
665
|
+
<string>YES</string>
|
|
666
|
+
<key>CLANG_WARN_INT_CONVERSION</key>
|
|
667
|
+
<string>YES</string>
|
|
668
|
+
<key>CLANG_WARN_OBJC_ROOT_CLASS</key>
|
|
669
|
+
<string>YES_ERROR</string>
|
|
670
|
+
<key>CLANG_WARN__DUPLICATE_METHOD_MATCH</key>
|
|
671
|
+
<string>YES</string>
|
|
672
|
+
<key>CODE_SIGN_IDENTITY[sdk=iphoneos*]</key>
|
|
673
|
+
<string>iPhone Developer</string>
|
|
674
|
+
<key>COPY_PHASE_STRIP</key>
|
|
675
|
+
<string>YES</string>
|
|
676
|
+
<key>ENABLE_NS_ASSERTIONS</key>
|
|
677
|
+
<string>NO</string>
|
|
678
|
+
<key>GCC_C_LANGUAGE_STANDARD</key>
|
|
679
|
+
<string>gnu99</string>
|
|
680
|
+
<key>GCC_WARN_64_TO_32_BIT_CONVERSION</key>
|
|
681
|
+
<string>YES</string>
|
|
682
|
+
<key>GCC_WARN_ABOUT_RETURN_TYPE</key>
|
|
683
|
+
<string>YES_ERROR</string>
|
|
684
|
+
<key>GCC_WARN_UNDECLARED_SELECTOR</key>
|
|
685
|
+
<string>YES</string>
|
|
686
|
+
<key>GCC_WARN_UNINITIALIZED_AUTOS</key>
|
|
687
|
+
<string>YES_AGGRESSIVE</string>
|
|
688
|
+
<key>GCC_WARN_UNUSED_FUNCTION</key>
|
|
689
|
+
<string>YES</string>
|
|
690
|
+
<key>GCC_WARN_UNUSED_VARIABLE</key>
|
|
691
|
+
<string>YES</string>
|
|
692
|
+
<key>IPHONEOS_DEPLOYMENT_TARGET</key>
|
|
693
|
+
<string>7.1</string>
|
|
694
|
+
<key>SDKROOT</key>
|
|
695
|
+
<string>iphoneos</string>
|
|
696
|
+
<key>VALIDATE_PRODUCT</key>
|
|
697
|
+
<string>YES</string>
|
|
698
|
+
</dict>
|
|
699
|
+
<key>isa</key>
|
|
700
|
+
<string>XCBuildConfiguration</string>
|
|
701
|
+
<key>name</key>
|
|
702
|
+
<string>Release</string>
|
|
703
|
+
</dict>
|
|
704
|
+
<key>71239DD01912BFF80058657F</key>
|
|
705
|
+
<dict>
|
|
706
|
+
<key>buildConfigurations</key>
|
|
707
|
+
<array>
|
|
708
|
+
<string>71239DD11912BFF80058657F</string>
|
|
709
|
+
<string>71239DD21912BFF80058657F</string>
|
|
710
|
+
</array>
|
|
711
|
+
<key>defaultConfigurationIsVisible</key>
|
|
712
|
+
<string>0</string>
|
|
713
|
+
<key>defaultConfigurationName</key>
|
|
714
|
+
<string>Release</string>
|
|
715
|
+
<key>isa</key>
|
|
716
|
+
<string>XCConfigurationList</string>
|
|
717
|
+
</dict>
|
|
718
|
+
<key>71239DD11912BFF80058657F</key>
|
|
719
|
+
<dict>
|
|
720
|
+
<key>buildSettings</key>
|
|
721
|
+
<dict>
|
|
722
|
+
<key>ASSETCATALOG_COMPILER_APPICON_NAME</key>
|
|
723
|
+
<string>AppIcon</string>
|
|
724
|
+
<key>ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME</key>
|
|
725
|
+
<string>LaunchImage</string>
|
|
726
|
+
<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
|
|
727
|
+
<string>YES</string>
|
|
728
|
+
<key>GCC_PREFIX_HEADER</key>
|
|
729
|
+
<string>Example/Example-Prefix.pch</string>
|
|
730
|
+
<key>INFOPLIST_FILE</key>
|
|
731
|
+
<string>Example/Example-Info.plist</string>
|
|
732
|
+
<key>PRODUCT_NAME</key>
|
|
733
|
+
<string>$(TARGET_NAME)</string>
|
|
734
|
+
<key>WRAPPER_EXTENSION</key>
|
|
735
|
+
<string>app</string>
|
|
736
|
+
</dict>
|
|
737
|
+
<key>isa</key>
|
|
738
|
+
<string>XCBuildConfiguration</string>
|
|
739
|
+
<key>name</key>
|
|
740
|
+
<string>Debug</string>
|
|
741
|
+
</dict>
|
|
742
|
+
<key>71239DD21912BFF80058657F</key>
|
|
743
|
+
<dict>
|
|
744
|
+
<key>buildSettings</key>
|
|
745
|
+
<dict>
|
|
746
|
+
<key>ASSETCATALOG_COMPILER_APPICON_NAME</key>
|
|
747
|
+
<string>AppIcon</string>
|
|
748
|
+
<key>ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME</key>
|
|
749
|
+
<string>LaunchImage</string>
|
|
750
|
+
<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
|
|
751
|
+
<string>YES</string>
|
|
752
|
+
<key>GCC_PREFIX_HEADER</key>
|
|
753
|
+
<string>Example/Example-Prefix.pch</string>
|
|
754
|
+
<key>INFOPLIST_FILE</key>
|
|
755
|
+
<string>Example/Example-Info.plist</string>
|
|
756
|
+
<key>PRODUCT_NAME</key>
|
|
757
|
+
<string>$(TARGET_NAME)</string>
|
|
758
|
+
<key>WRAPPER_EXTENSION</key>
|
|
759
|
+
<string>app</string>
|
|
760
|
+
</dict>
|
|
761
|
+
<key>isa</key>
|
|
762
|
+
<string>XCBuildConfiguration</string>
|
|
763
|
+
<key>name</key>
|
|
764
|
+
<string>Release</string>
|
|
765
|
+
</dict>
|
|
766
|
+
<key>71239DD31912BFF80058657F</key>
|
|
767
|
+
<dict>
|
|
768
|
+
<key>buildConfigurations</key>
|
|
769
|
+
<array>
|
|
770
|
+
<string>71239DD41912BFF80058657F</string>
|
|
771
|
+
<string>71239DD51912BFF80058657F</string>
|
|
772
|
+
</array>
|
|
773
|
+
<key>defaultConfigurationIsVisible</key>
|
|
774
|
+
<string>0</string>
|
|
775
|
+
<key>defaultConfigurationName</key>
|
|
776
|
+
<string>Release</string>
|
|
777
|
+
<key>isa</key>
|
|
778
|
+
<string>XCConfigurationList</string>
|
|
779
|
+
</dict>
|
|
780
|
+
<key>71239DD41912BFF80058657F</key>
|
|
781
|
+
<dict>
|
|
782
|
+
<key>buildSettings</key>
|
|
783
|
+
<dict>
|
|
784
|
+
<key>BUNDLE_LOADER</key>
|
|
785
|
+
<string>$(BUILT_PRODUCTS_DIR)/Example.app/Example</string>
|
|
786
|
+
<key>FRAMEWORK_SEARCH_PATHS</key>
|
|
787
|
+
<array>
|
|
788
|
+
<string>$(SDKROOT)/Developer/Library/Frameworks</string>
|
|
789
|
+
<string>$(inherited)</string>
|
|
790
|
+
<string>$(DEVELOPER_FRAMEWORKS_DIR)</string>
|
|
791
|
+
</array>
|
|
792
|
+
<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
|
|
793
|
+
<string>YES</string>
|
|
794
|
+
<key>GCC_PREFIX_HEADER</key>
|
|
795
|
+
<string>Example/Example-Prefix.pch</string>
|
|
796
|
+
<key>GCC_PREPROCESSOR_DEFINITIONS</key>
|
|
797
|
+
<array>
|
|
798
|
+
<string>DEBUG=1</string>
|
|
799
|
+
<string>$(inherited)</string>
|
|
800
|
+
</array>
|
|
801
|
+
<key>INFOPLIST_FILE</key>
|
|
802
|
+
<string>ExampleTests/ExampleTests-Info.plist</string>
|
|
803
|
+
<key>PRODUCT_NAME</key>
|
|
804
|
+
<string>$(TARGET_NAME)</string>
|
|
805
|
+
<key>TEST_HOST</key>
|
|
806
|
+
<string>$(BUNDLE_LOADER)</string>
|
|
807
|
+
<key>WRAPPER_EXTENSION</key>
|
|
808
|
+
<string>xctest</string>
|
|
809
|
+
</dict>
|
|
810
|
+
<key>isa</key>
|
|
811
|
+
<string>XCBuildConfiguration</string>
|
|
812
|
+
<key>name</key>
|
|
813
|
+
<string>Debug</string>
|
|
814
|
+
</dict>
|
|
815
|
+
<key>71239DD51912BFF80058657F</key>
|
|
816
|
+
<dict>
|
|
817
|
+
<key>buildSettings</key>
|
|
818
|
+
<dict>
|
|
819
|
+
<key>BUNDLE_LOADER</key>
|
|
820
|
+
<string>$(BUILT_PRODUCTS_DIR)/Example.app/Example</string>
|
|
821
|
+
<key>FRAMEWORK_SEARCH_PATHS</key>
|
|
822
|
+
<array>
|
|
823
|
+
<string>$(SDKROOT)/Developer/Library/Frameworks</string>
|
|
824
|
+
<string>$(inherited)</string>
|
|
825
|
+
<string>$(DEVELOPER_FRAMEWORKS_DIR)</string>
|
|
826
|
+
</array>
|
|
827
|
+
<key>GCC_PRECOMPILE_PREFIX_HEADER</key>
|
|
828
|
+
<string>YES</string>
|
|
829
|
+
<key>GCC_PREFIX_HEADER</key>
|
|
830
|
+
<string>Example/Example-Prefix.pch</string>
|
|
831
|
+
<key>INFOPLIST_FILE</key>
|
|
832
|
+
<string>ExampleTests/ExampleTests-Info.plist</string>
|
|
833
|
+
<key>PRODUCT_NAME</key>
|
|
834
|
+
<string>$(TARGET_NAME)</string>
|
|
835
|
+
<key>TEST_HOST</key>
|
|
836
|
+
<string>$(BUNDLE_LOADER)</string>
|
|
837
|
+
<key>WRAPPER_EXTENSION</key>
|
|
838
|
+
<string>xctest</string>
|
|
839
|
+
</dict>
|
|
840
|
+
<key>isa</key>
|
|
841
|
+
<string>XCBuildConfiguration</string>
|
|
842
|
+
<key>name</key>
|
|
843
|
+
<string>Release</string>
|
|
844
|
+
</dict>
|
|
845
|
+
<key>9151082B5163490B82C04FFF</key>
|
|
846
|
+
<dict>
|
|
847
|
+
<key>includeInIndex</key>
|
|
848
|
+
<string>1</string>
|
|
849
|
+
<key>isa</key>
|
|
850
|
+
<string>PBXFileReference</string>
|
|
851
|
+
<key>lastKnownFileType</key>
|
|
852
|
+
<string>sourcecode.c.objc</string>
|
|
853
|
+
<key>path</key>
|
|
854
|
+
<string>R.m</string>
|
|
855
|
+
<key>sourceTree</key>
|
|
856
|
+
<string><group></string>
|
|
857
|
+
</dict>
|
|
858
|
+
<key>BF3EA3A5BF3B4BF58F78E28D</key>
|
|
859
|
+
<dict>
|
|
860
|
+
<key>includeInIndex</key>
|
|
861
|
+
<string>1</string>
|
|
862
|
+
<key>isa</key>
|
|
863
|
+
<string>PBXFileReference</string>
|
|
864
|
+
<key>lastKnownFileType</key>
|
|
865
|
+
<string>sourcecode.c.h</string>
|
|
866
|
+
<key>path</key>
|
|
867
|
+
<string>R.h</string>
|
|
868
|
+
<key>sourceTree</key>
|
|
869
|
+
<string><group></string>
|
|
870
|
+
</dict>
|
|
871
|
+
<key>D0D577CD72364216A4D13217</key>
|
|
872
|
+
<dict>
|
|
873
|
+
<key>children</key>
|
|
874
|
+
<array>
|
|
875
|
+
<string>BF3EA3A5BF3B4BF58F78E28D</string>
|
|
876
|
+
<string>9151082B5163490B82C04FFF</string>
|
|
877
|
+
</array>
|
|
878
|
+
<key>isa</key>
|
|
879
|
+
<string>PBXGroup</string>
|
|
880
|
+
<key>name</key>
|
|
881
|
+
<string>Resources</string>
|
|
882
|
+
<key>path</key>
|
|
883
|
+
<string>Resources</string>
|
|
884
|
+
<key>sourceTree</key>
|
|
885
|
+
<string><group></string>
|
|
886
|
+
</dict>
|
|
887
|
+
<key>E073540CB75F4AE79DA160A8</key>
|
|
888
|
+
<dict>
|
|
889
|
+
<key>fileRef</key>
|
|
890
|
+
<string>9151082B5163490B82C04FFF</string>
|
|
891
|
+
<key>isa</key>
|
|
892
|
+
<string>PBXBuildFile</string>
|
|
893
|
+
</dict>
|
|
894
|
+
</dict>
|
|
895
|
+
<key>rootObject</key>
|
|
896
|
+
<string>71239D9C1912BFF70058657F</string>
|
|
897
|
+
</dict>
|
|
898
|
+
</plist>
|