cocoapods-deintegrate 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +16 -19
- data/cocoapods_deintegrate.gemspec +1 -1
- data/lib/cocoapods_deintegrate.rb +1 -1
- data/lib/pod/command/deintegrate.rb +27 -15
- data/spec/command/deintegrate_spec.rb +47 -1
- data/spec/fixtures/Project/Frameworks/Podfile +12 -0
- data/spec/fixtures/Project/Frameworks/Podfile.lock +42 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/QueryKit/QKAttribute.h +210 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/QueryKit/QKQuerySet.h +155 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/QueryKit/QueryKit.h +19 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/Quick/NSString+QCKSelectorName.h +17 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/Quick/QCKDSL.h +211 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/Quick/Quick.h +13 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/Quick/QuickConfiguration.h +30 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Private/Quick/QuickSpec.h +48 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/QueryKit/QKAttribute.h +210 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/QueryKit/QKQuerySet.h +155 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/QueryKit/QueryKit.h +19 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/Quick/NSString+QCKSelectorName.h +17 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/Quick/QCKDSL.h +211 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/Quick/Quick.h +13 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/Quick/QuickConfiguration.h +30 -0
- data/spec/fixtures/Project/Frameworks/Pods/Headers/Public/Quick/QuickSpec.h +48 -0
- data/spec/fixtures/Project/Frameworks/Pods/Manifest.lock +42 -0
- data/spec/fixtures/Project/Frameworks/Pods/Pods.xcodeproj/project.pbxproj +995 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/LICENSE +23 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/Attribute.swift +124 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/Expression.swift +41 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/ObjectiveC/QKAttribute.h +210 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/ObjectiveC/QKAttribute.m +315 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/ObjectiveC/QKAttribute.swift +13 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/ObjectiveC/QKQuerySet.h +155 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/ObjectiveC/QKQuerySet.m +314 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/ObjectiveC/QKQuerySet.swift +28 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/Predicate.swift +21 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/QueryKit.h +19 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/QueryKit/QuerySet.swift +237 -0
- data/spec/fixtures/Project/Frameworks/Pods/QueryKit/README.md +151 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/LICENSE +201 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Callsite.swift +28 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Configuration/Configuration.swift +147 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Configuration/QuickConfiguration.h +30 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Configuration/QuickConfiguration.m +83 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/DSL/DSL.swift +227 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/DSL/QCKDSL.h +211 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/DSL/QCKDSL.m +70 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/DSL/World+DSL.swift +100 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Example.swift +103 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/ExampleGroup.swift +97 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/ExampleMetadata.swift +22 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Failure.swift +16 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Filter.swift +29 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Hooks/Closures.swift +35 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Hooks/ExampleHooks.swift +36 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Hooks/SuiteHooks.swift +34 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/NSString+QCKSelectorName.h +17 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/NSString+QCKSelectorName.m +33 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/Quick.h +13 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/QuickSpec.h +48 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/QuickSpec.m +142 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/Quick/World.swift +197 -0
- data/spec/fixtures/Project/Frameworks/Pods/Quick/README.md +979 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Info.plist +26 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit-Private.xcconfig +9 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit-dummy.m +5 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit-prefix.pch +5 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit-umbrella.h +9 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit.modulemap +6 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit.xcconfig b/data/spec/fixtures/Project/Frameworks/Pods/Target Support → Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit.xcconfig +0 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Info.plist +26 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-acknowledgements.markdown +30 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-acknowledgements.plist +60 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-dummy.m +5 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-environment.h +74 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-frameworks.sh +55 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-resources.sh +74 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-umbrella.h +6 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject.debug.xcconfig +9 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject.modulemap +6 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProject/Pods-TestProject.release.xcconfig +9 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Info.plist +26 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick-Private.xcconfig +9 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick-dummy.m +5 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick-prefix.pch +5 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick-umbrella.h +11 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick.modulemap +6 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick.xcconfig +2 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Info.plist +26 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-acknowledgements.markdown +208 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-acknowledgements.plist +238 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-dummy.m +5 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-environment.h +14 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-frameworks.sh +55 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-resources.sh +74 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-umbrella.h +6 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.debug.xcconfig +9 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.modulemap +6 -0
- data/spec/fixtures/Project/Frameworks/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.release.xcconfig +9 -0
- data/spec/fixtures/Project/Frameworks/TestProject.xcodeproj/project.pbxproj +557 -0
- data/spec/fixtures/Project/Frameworks/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/Project/Frameworks/TestProject.xcworkspace/contents.xcworkspacedata +10 -0
- data/spec/fixtures/Project/Frameworks/TestProject/AppDelegate.swift +46 -0
- data/spec/fixtures/Project/Frameworks/TestProject/Base.lproj/LaunchScreen.xib +41 -0
- data/spec/fixtures/Project/Frameworks/TestProject/Base.lproj/Main.storyboard +25 -0
- data/spec/fixtures/Project/Frameworks/TestProject/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- data/spec/fixtures/Project/Frameworks/TestProject/Info.plist +40 -0
- data/spec/fixtures/Project/Frameworks/TestProject/ViewController.swift +25 -0
- data/spec/fixtures/Project/Frameworks/TestProjectTests/Info.plist +24 -0
- data/spec/fixtures/Project/Frameworks/TestProjectTests/TestProjectTests.swift +36 -0
- data/spec/fixtures/Project/None/TestProject.xcodeproj/project.pbxproj +420 -0
- data/spec/fixtures/Project/None/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/Project/None/TestProject/AppDelegate.swift +46 -0
- data/spec/fixtures/Project/None/TestProject/Base.lproj/LaunchScreen.xib +41 -0
- data/spec/fixtures/Project/None/TestProject/Base.lproj/Main.storyboard +25 -0
- data/spec/fixtures/Project/None/TestProject/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- data/spec/fixtures/Project/None/TestProject/Info.plist +40 -0
- data/spec/fixtures/Project/None/TestProject/ViewController.swift +25 -0
- data/spec/fixtures/Project/None/TestProjectTests/Info.plist +24 -0
- data/spec/fixtures/Project/None/TestProjectTests/TestProjectTests.swift +36 -0
- data/spec/fixtures/Project/StaticLibraries/Podfile +12 -0
- data/spec/fixtures/Project/StaticLibraries/Podfile.lock +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/LICENSE +19 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/README.md +308 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPBackwardCompatibility.h +42 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPBackwardCompatibility.m +17 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPBlockDefinedMatcher.h +25 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPBlockDefinedMatcher.m +60 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPDefines.h +17 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPDoubleTuple.h +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPDoubleTuple.m +42 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPExpect.h +45 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPExpect.m +214 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPFloatTuple.h +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPFloatTuple.m +42 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPMatcher.h +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPUnsupportedObject.h +11 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/EXPUnsupportedObject.m +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/Expecta.h +27 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/Expecta.m +15 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/ExpectaSupport.h +64 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/ExpectaSupport.m +187 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/NSObject+Expecta.h +14 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/NSValue+Expecta.h +8 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/NSValue+Expecta.m +21 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatcherHelpers.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatcherHelpers.m +9 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.h +7 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beCloseTo.m +49 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beFalsy.m +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThan.m +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beGreaterThanOrEqualTo.m +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.h +10 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beIdenticalTo.m +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beInTheRangeOf.m +30 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.h +7 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beInstanceOf.m +27 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beKindOf.m +27 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beLessThan.m +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beLessThanOrEqualTo.m +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beNil.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beNil.m +16 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beSubclassOf.m +27 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beSupersetOf.m +57 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beTruthy.m +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beginWith.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+beginWith.m +49 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+conformTo.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+conformTo.m +33 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+contain.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+contain.m +38 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+endWith.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+endWith.m +49 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+equal.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+equal.m +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.h +10 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+haveCountOf.m +36 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+notify.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+notify.m +63 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+raise.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+raise.m +30 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+raiseWithReason.m +35 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+respondTo.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers+respondTo.m +28 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Expecta/src/matchers/EXPMatchers.h +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPBackwardCompatibility.h +42 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPBlockDefinedMatcher.h +25 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPDefines.h +17 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPDoubleTuple.h +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPExpect.h +45 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPFloatTuple.h +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatcher.h +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatcherHelpers.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beCloseTo.h +7 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beFalsy.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThan.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beIdenticalTo.h +10 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beInTheRangeOf.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beInstanceOf.h +7 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beKindOf.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beLessThan.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beLessThanOrEqualTo.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beNil.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beSubclassOf.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beSupersetOf.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beTruthy.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+beginWith.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+conformTo.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+contain.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+endWith.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+equal.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+haveCountOf.h +10 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+notify.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+raise.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+raiseWithReason.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers+respondTo.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPMatchers.h +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/EXPUnsupportedObject.h +11 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/Expecta.h +27 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/ExpectaSupport.h +64 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/NSObject+Expecta.h +14 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/Expecta/NSValue+Expecta.h +8 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Private/NSAttributedString+CCLFormat/NSAttributedString+CCLFormat.h +21 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPBackwardCompatibility.h +42 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPBlockDefinedMatcher.h +25 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPDefines.h +17 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPDoubleTuple.h +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPExpect.h +45 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPFloatTuple.h +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatcher.h +20 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatcherHelpers.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beCloseTo.h +7 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beFalsy.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThan.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beGreaterThanOrEqualTo.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beIdenticalTo.h +10 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beInTheRangeOf.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beInstanceOf.h +7 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beKindOf.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beLessThan.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beLessThanOrEqualTo.h +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beNil.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beSubclassOf.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beSupersetOf.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beTruthy.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+beginWith.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+conformTo.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+contain.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+endWith.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+equal.h +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+haveCountOf.h +10 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+notify.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+raise.h +4 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+raiseWithReason.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers+respondTo.h +3 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPMatchers.h +24 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/EXPUnsupportedObject.h +11 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/Expecta.h +27 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/ExpectaSupport.h +64 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/NSObject+Expecta.h +14 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/Expecta/NSValue+Expecta.h +8 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Headers/Public/NSAttributedString+CCLFormat/NSAttributedString+CCLFormat.h +21 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Manifest.lock +13 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/NSAttributedString+CCLFormat/LICENSE +23 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/NSAttributedString+CCLFormat/NSAttributedString+CCLFormat.h +21 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/NSAttributedString+CCLFormat/NSAttributedString+CCLFormat.m +51 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/NSAttributedString+CCLFormat/README.md +57 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Pods.xcodeproj/project.pbxproj +943 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject-NSAttributedString+CCLFormat/Pods-TestProject-NSAttributedString+CCLFormat-Private.xcconfig +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject-NSAttributedString+CCLFormat/Pods-TestProject-NSAttributedString+CCLFormat-dummy.m +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject-NSAttributedString+CCLFormat/Pods-TestProject-NSAttributedString+CCLFormat-prefix.pch +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject-NSAttributedString+CCLFormat/Pods-TestProject-NSAttributedString+CCLFormat.xcconfig b/data/spec/fixtures/Project/StaticLibraries/Pods/Target Support → Files/Pods-TestProject-NSAttributedString+CCLFormat/Pods-TestProject-NSAttributedString+CCLFormat.xcconfig +0 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-acknowledgements.markdown +30 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-acknowledgements.plist +60 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-dummy.m +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-environment.h +14 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject-resources.sh +74 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject.debug.xcconfig +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProject/Pods-TestProject.release.xcconfig +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests-Expecta/Pods-TestProjectTests-Expecta-Private.xcconfig +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests-Expecta/Pods-TestProjectTests-Expecta-dummy.m +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests-Expecta/Pods-TestProjectTests-Expecta-prefix.pch +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests-Expecta/Pods-TestProjectTests-Expecta.xcconfig +1 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-acknowledgements.markdown +26 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-acknowledgements.plist +56 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-dummy.m +5 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-environment.h +14 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests-resources.sh +74 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.debug.xcconfig +6 -0
- data/spec/fixtures/Project/StaticLibraries/Pods/Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.release.xcconfig +6 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject.xcodeproj/project.pbxproj +525 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject.xcworkspace/contents.xcworkspacedata +10 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject/AppDelegate.swift +46 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject/Base.lproj/LaunchScreen.xib +41 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject/Base.lproj/Main.storyboard +25 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject/Info.plist +40 -0
- data/spec/fixtures/Project/StaticLibraries/TestProject/ViewController.swift +25 -0
- data/spec/fixtures/Project/StaticLibraries/TestProjectTests/Info.plist +24 -0
- data/spec/fixtures/Project/StaticLibraries/TestProjectTests/TestProjectTests.swift +36 -0
- metadata +620 -7
@@ -0,0 +1,211 @@
|
|
1
|
+
#import <Foundation/Foundation.h>
|
2
|
+
|
3
|
+
/**
|
4
|
+
Provides a hook for Quick to be configured before any examples are run.
|
5
|
+
Within this scope, override the +[QuickConfiguration configure:] method
|
6
|
+
to set properties on a configuration object to customize Quick behavior.
|
7
|
+
For details, see the documentation for Configuraiton.swift.
|
8
|
+
|
9
|
+
@param name The name of the configuration class. Like any Objective-C
|
10
|
+
class name, this must be unique to the current runtime
|
11
|
+
environment.
|
12
|
+
*/
|
13
|
+
#define QuickConfigurationBegin(name) \
|
14
|
+
@interface name : QuickConfiguration; @end \
|
15
|
+
@implementation name \
|
16
|
+
|
17
|
+
|
18
|
+
/**
|
19
|
+
Marks the end of a Quick configuration.
|
20
|
+
Make sure you put this after `QuickConfigurationBegin`.
|
21
|
+
*/
|
22
|
+
#define QuickConfigurationEnd \
|
23
|
+
@end \
|
24
|
+
|
25
|
+
|
26
|
+
/**
|
27
|
+
Defines a new QuickSpec. Define examples and example groups within the space
|
28
|
+
between this and `QuickSpecEnd`.
|
29
|
+
|
30
|
+
@param name The name of the spec class. Like any Objective-C class name, this
|
31
|
+
must be unique to the current runtime environment.
|
32
|
+
*/
|
33
|
+
#define QuickSpecBegin(name) \
|
34
|
+
@interface name : QuickSpec; @end \
|
35
|
+
@implementation name \
|
36
|
+
- (void)spec { \
|
37
|
+
|
38
|
+
|
39
|
+
/**
|
40
|
+
Marks the end of a QuickSpec. Make sure you put this after `QuickSpecBegin`.
|
41
|
+
*/
|
42
|
+
#define QuickSpecEnd \
|
43
|
+
} \
|
44
|
+
@end \
|
45
|
+
|
46
|
+
typedef NSDictionary *(^QCKDSLSharedExampleContext)(void);
|
47
|
+
typedef void (^QCKDSLSharedExampleBlock)(QCKDSLSharedExampleContext);
|
48
|
+
typedef void (^QCKDSLEmptyBlock)(void);
|
49
|
+
|
50
|
+
extern void qck_beforeSuite(QCKDSLEmptyBlock closure);
|
51
|
+
extern void qck_afterSuite(QCKDSLEmptyBlock closure);
|
52
|
+
extern void qck_sharedExamples(NSString *name, QCKDSLSharedExampleBlock closure);
|
53
|
+
extern void qck_describe(NSString *description, QCKDSLEmptyBlock closure);
|
54
|
+
extern void qck_context(NSString *description, QCKDSLEmptyBlock closure);
|
55
|
+
extern void qck_beforeEach(QCKDSLEmptyBlock closure);
|
56
|
+
extern void qck_afterEach(QCKDSLEmptyBlock closure);
|
57
|
+
extern void qck_pending(NSString *description, QCKDSLEmptyBlock closure);
|
58
|
+
extern void qck_xdescribe(NSString *description, QCKDSLEmptyBlock closure);
|
59
|
+
extern void qck_xcontext(NSString *description, QCKDSLEmptyBlock closure);
|
60
|
+
extern void qck_fdescribe(NSString *description, QCKDSLEmptyBlock closure);
|
61
|
+
extern void qck_fcontext(NSString *description, QCKDSLEmptyBlock closure);
|
62
|
+
|
63
|
+
#ifndef QUICK_DISABLE_SHORT_SYNTAX
|
64
|
+
/**
|
65
|
+
Defines a closure to be run prior to any examples in the test suite.
|
66
|
+
You may define an unlimited number of these closures, but there is no
|
67
|
+
guarantee as to the order in which they're run.
|
68
|
+
|
69
|
+
If the test suite crashes before the first example is run, this closure
|
70
|
+
will not be executed.
|
71
|
+
|
72
|
+
@param closure The closure to be run prior to any examples in the test suite.
|
73
|
+
*/
|
74
|
+
static inline void beforeSuite(QCKDSLEmptyBlock closure) {
|
75
|
+
qck_beforeSuite(closure);
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
/**
|
80
|
+
Defines a closure to be run after all of the examples in the test suite.
|
81
|
+
You may define an unlimited number of these closures, but there is no
|
82
|
+
guarantee as to the order in which they're run.
|
83
|
+
|
84
|
+
If the test suite crashes before all examples are run, this closure
|
85
|
+
will not be executed.
|
86
|
+
|
87
|
+
@param closure The closure to be run after all of the examples in the test suite.
|
88
|
+
*/
|
89
|
+
static inline void afterSuite(QCKDSLEmptyBlock closure) {
|
90
|
+
qck_afterSuite(closure);
|
91
|
+
}
|
92
|
+
|
93
|
+
/**
|
94
|
+
Defines a group of shared examples. These examples can be re-used in several locations
|
95
|
+
by using the `itBehavesLike` function.
|
96
|
+
|
97
|
+
@param name The name of the shared example group. This must be unique across all shared example
|
98
|
+
groups defined in a test suite.
|
99
|
+
@param closure A closure containing the examples. This behaves just like an example group defined
|
100
|
+
using `describe` or `context`--the closure may contain any number of `beforeEach`
|
101
|
+
and `afterEach` closures, as well as any number of examples (defined using `it`).
|
102
|
+
*/
|
103
|
+
static inline void sharedExamples(NSString *name, QCKDSLSharedExampleBlock closure) {
|
104
|
+
qck_sharedExamples(name, closure);
|
105
|
+
}
|
106
|
+
|
107
|
+
/**
|
108
|
+
Defines an example group. Example groups are logical groupings of examples.
|
109
|
+
Example groups can share setup and teardown code.
|
110
|
+
|
111
|
+
@param description An arbitrary string describing the example group.
|
112
|
+
@param closure A closure that can contain other examples.
|
113
|
+
*/
|
114
|
+
static inline void describe(NSString *description, QCKDSLEmptyBlock closure) {
|
115
|
+
qck_describe(description, closure);
|
116
|
+
}
|
117
|
+
|
118
|
+
/**
|
119
|
+
Defines an example group. Equivalent to `describe`.
|
120
|
+
*/
|
121
|
+
static inline void context(NSString *description, QCKDSLEmptyBlock closure) {
|
122
|
+
qck_context(description, closure);
|
123
|
+
}
|
124
|
+
|
125
|
+
/**
|
126
|
+
Defines a closure to be run prior to each example in the current example
|
127
|
+
group. This closure is not run for pending or otherwise disabled examples.
|
128
|
+
An example group may contain an unlimited number of beforeEach. They'll be
|
129
|
+
run in the order they're defined, but you shouldn't rely on that behavior.
|
130
|
+
|
131
|
+
@param closure The closure to be run prior to each example.
|
132
|
+
*/
|
133
|
+
static inline void beforeEach(QCKDSLEmptyBlock closure) {
|
134
|
+
qck_beforeEach(closure);
|
135
|
+
}
|
136
|
+
|
137
|
+
/**
|
138
|
+
Defines a closure to be run after each example in the current example
|
139
|
+
group. This closure is not run for pending or otherwise disabled examples.
|
140
|
+
An example group may contain an unlimited number of afterEach. They'll be
|
141
|
+
run in the order they're defined, but you shouldn't rely on that behavior.
|
142
|
+
|
143
|
+
@param closure The closure to be run after each example.
|
144
|
+
*/
|
145
|
+
static inline void afterEach(QCKDSLEmptyBlock closure) {
|
146
|
+
qck_afterEach(closure);
|
147
|
+
}
|
148
|
+
|
149
|
+
/**
|
150
|
+
Defines an example or example group that should not be executed. Use `pending` to temporarily disable
|
151
|
+
examples or groups that should not be run yet.
|
152
|
+
|
153
|
+
@param description An arbitrary string describing the example or example group.
|
154
|
+
@param closure A closure that will not be evaluated.
|
155
|
+
*/
|
156
|
+
static inline void pending(NSString *description, QCKDSLEmptyBlock closure) {
|
157
|
+
qck_pending(description, closure);
|
158
|
+
}
|
159
|
+
|
160
|
+
/**
|
161
|
+
Use this to quickly mark a `describe` block as pending.
|
162
|
+
This disables all examples within the block.
|
163
|
+
*/
|
164
|
+
static inline void xdescribe(NSString *description, QCKDSLEmptyBlock closure) {
|
165
|
+
qck_xdescribe(description, closure);
|
166
|
+
}
|
167
|
+
|
168
|
+
/**
|
169
|
+
Use this to quickly mark a `context` block as pending.
|
170
|
+
This disables all examples within the block.
|
171
|
+
*/
|
172
|
+
static inline void xcontext(NSString *description, QCKDSLEmptyBlock closure) {
|
173
|
+
qck_xcontext(description, closure);
|
174
|
+
}
|
175
|
+
|
176
|
+
/**
|
177
|
+
Use this to quickly focus a `describe` block, focusing the examples in the block.
|
178
|
+
If any examples in the test suite are focused, only those examples are executed.
|
179
|
+
This trumps any explicitly focused or unfocused examples within the block--they are all treated as focused.
|
180
|
+
*/
|
181
|
+
static inline void fdescribe(NSString *description, QCKDSLEmptyBlock closure) {
|
182
|
+
qck_fdescribe(description, closure);
|
183
|
+
}
|
184
|
+
|
185
|
+
/**
|
186
|
+
Use this to quickly focus a `context` block. Equivalent to `fdescribe`.
|
187
|
+
*/
|
188
|
+
static inline void fcontext(NSString *description, QCKDSLEmptyBlock closure) {
|
189
|
+
qck_fcontext(description, closure);
|
190
|
+
}
|
191
|
+
|
192
|
+
#define it qck_it
|
193
|
+
#define xit qck_xit
|
194
|
+
#define fit qck_fit
|
195
|
+
#define itBehavesLike qck_itBehavesLike
|
196
|
+
#define xitBehavesLike qck_xitBehavesLike
|
197
|
+
#define fitBehavesLike qck_fitBehavesLike
|
198
|
+
#endif
|
199
|
+
|
200
|
+
#define qck_it qck_it_builder(@{}, @(__FILE__), __LINE__)
|
201
|
+
#define qck_xit qck_it_builder(@{Filter.pending: @YES}, @(__FILE__), __LINE__)
|
202
|
+
#define qck_fit qck_it_builder(@{Filter.focused: @YES}, @(__FILE__), __LINE__)
|
203
|
+
#define qck_itBehavesLike qck_itBehavesLike_builder(@{}, @(__FILE__), __LINE__)
|
204
|
+
#define qck_xitBehavesLike qck_itBehavesLike_builder(@{Filter.pending: @YES}, @(__FILE__), __LINE__)
|
205
|
+
#define qck_fitBehavesLike qck_itBehavesLike_builder(@{Filter.focused: @YES}, @(__FILE__), __LINE__)
|
206
|
+
|
207
|
+
typedef void (^QCKItBlock)(NSString *description, QCKDSLEmptyBlock closure);
|
208
|
+
typedef void (^QCKItBehavesLikeBlock)(NSString *descritpion, QCKDSLSharedExampleContext context);
|
209
|
+
|
210
|
+
extern QCKItBlock qck_it_builder(NSDictionary *flags, NSString *file, NSUInteger line);
|
211
|
+
extern QCKItBehavesLikeBlock qck_itBehavesLike_builder(NSDictionary *flags, NSString *file, NSUInteger line);
|
@@ -0,0 +1,13 @@
|
|
1
|
+
#import <Foundation/Foundation.h>
|
2
|
+
|
3
|
+
//! Project version number for Quick.
|
4
|
+
FOUNDATION_EXPORT double QuickVersionNumber;
|
5
|
+
|
6
|
+
//! Project version string for Quick.
|
7
|
+
FOUNDATION_EXPORT const unsigned char QuickVersionString[];
|
8
|
+
|
9
|
+
// In this header, you should import all the public headers of your framework using statements like #import <Quick/PublicHeader.h>
|
10
|
+
|
11
|
+
#import <Quick/QuickSpec.h>
|
12
|
+
#import <Quick/QCKDSL.h>
|
13
|
+
#import <Quick/QuickConfiguration.h>
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#import <Foundation/Foundation.h>
|
2
|
+
|
3
|
+
@class Configuration;
|
4
|
+
|
5
|
+
/**
|
6
|
+
Subclass QuickConfiguration and override the +[QuickConfiguration configure:]
|
7
|
+
method in order to configure how Quick behaves when running specs, or to define
|
8
|
+
shared examples that are used across spec files.
|
9
|
+
*/
|
10
|
+
@interface QuickConfiguration : NSObject
|
11
|
+
|
12
|
+
/**
|
13
|
+
This method is executed on each subclass of this class before Quick runs
|
14
|
+
any examples. You may override this method on as many subclasses as you like, but
|
15
|
+
there is no guarantee as to the order in which these methods are executed.
|
16
|
+
|
17
|
+
You can override this method in order to:
|
18
|
+
|
19
|
+
1. Configure how Quick behaves, by modifying properties on the Configuration object.
|
20
|
+
Setting the same properties in several methods has undefined behavior.
|
21
|
+
|
22
|
+
2. Define shared examples using `sharedExamples`.
|
23
|
+
|
24
|
+
@param configuration A mutable object that is used to configure how Quick behaves on
|
25
|
+
a framework level. For details on all the options, see the
|
26
|
+
documentation in Configuration.swift.
|
27
|
+
*/
|
28
|
+
+ (void)configure:(Configuration *)configuration;
|
29
|
+
|
30
|
+
@end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#import <XCTest/XCTest.h>
|
2
|
+
|
3
|
+
/**
|
4
|
+
QuickSpec is a base class all specs written in Quick inherit from.
|
5
|
+
They need to inherit from QuickSpec, a subclass of XCTestCase, in
|
6
|
+
order to be discovered by the XCTest framework.
|
7
|
+
|
8
|
+
XCTest automatically compiles a list of XCTestCase subclasses included
|
9
|
+
in the test target. It iterates over each class in that list, and creates
|
10
|
+
a new instance of that class for each test method. It then creates an
|
11
|
+
"invocation" to execute that test method. The invocation is an instance of
|
12
|
+
NSInvocation, which represents a single message send in Objective-C.
|
13
|
+
The invocation is set on the XCTestCase instance, and the test is run.
|
14
|
+
|
15
|
+
Most of the code in QuickSpec is dedicated to hooking into XCTest events.
|
16
|
+
First, when the spec is first loaded and before it is sent any messages,
|
17
|
+
the +[NSObject initialize] method is called. QuickSpec overrides this method
|
18
|
+
to call +[QuickSpec spec]. This builds the example group stacks and
|
19
|
+
registers them with Quick.World, a global register of examples.
|
20
|
+
|
21
|
+
Then, XCTest queries QuickSpec for a list of test methods. Normally, XCTest
|
22
|
+
automatically finds all methods whose selectors begin with the string "test".
|
23
|
+
However, QuickSpec overrides this default behavior by implementing the
|
24
|
+
+[XCTestCase testInvocations] method. This method iterates over each example
|
25
|
+
registered in Quick.World, defines a new method for that example, and
|
26
|
+
returns an invocation to call that method to XCTest. Those invocations are
|
27
|
+
the tests that are run by XCTest. Their selector names are displayed in
|
28
|
+
the Xcode test navigation bar.
|
29
|
+
*/
|
30
|
+
@interface QuickSpec : XCTestCase
|
31
|
+
|
32
|
+
/**
|
33
|
+
Override this method in your spec to define a set of example groups
|
34
|
+
and examples.
|
35
|
+
|
36
|
+
override class func spec() {
|
37
|
+
describe("winter") {
|
38
|
+
it("is coming") {
|
39
|
+
// ...
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
See DSL.swift for more information on what syntax is available.
|
45
|
+
*/
|
46
|
+
- (void)spec;
|
47
|
+
|
48
|
+
@end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
PODS:
|
2
|
+
- QueryKit (0.9.1):
|
3
|
+
- QueryKit/Attribute (= 0.9.1)
|
4
|
+
- QueryKit/ObjectiveC (= 0.9.1)
|
5
|
+
- QueryKit/QuerySet (= 0.9.1)
|
6
|
+
- QueryKit/Swift (= 0.9.1)
|
7
|
+
- QueryKit/Attribute (0.9.1):
|
8
|
+
- QueryKit/Attribute/Bridge (= 0.9.1)
|
9
|
+
- QueryKit/Attribute/ObjectiveC (= 0.9.1)
|
10
|
+
- QueryKit/Attribute/Swift (= 0.9.1)
|
11
|
+
- QueryKit/Attribute/Bridge (0.9.1):
|
12
|
+
- QueryKit/Attribute/ObjectiveC
|
13
|
+
- QueryKit/Attribute/Swift
|
14
|
+
- QueryKit/Attribute/ObjectiveC (0.9.1)
|
15
|
+
- QueryKit/Attribute/Swift (0.9.1):
|
16
|
+
- QueryKit/QuerySet/Swift
|
17
|
+
- QueryKit/ObjectiveC (0.9.1):
|
18
|
+
- QueryKit/Attribute/ObjectiveC
|
19
|
+
- QueryKit/QuerySet/ObjectiveC
|
20
|
+
- QueryKit/QuerySet (0.9.1):
|
21
|
+
- QueryKit/QuerySet/Bridge (= 0.9.1)
|
22
|
+
- QueryKit/QuerySet/ObjectiveC (= 0.9.1)
|
23
|
+
- QueryKit/QuerySet/Swift (= 0.9.1)
|
24
|
+
- QueryKit/QuerySet/Bridge (0.9.1):
|
25
|
+
- QueryKit/QuerySet/ObjectiveC
|
26
|
+
- QueryKit/QuerySet/Swift
|
27
|
+
- QueryKit/QuerySet/ObjectiveC (0.9.1)
|
28
|
+
- QueryKit/QuerySet/Swift (0.9.1)
|
29
|
+
- QueryKit/Swift (0.9.1):
|
30
|
+
- QueryKit/Attribute/Swift
|
31
|
+
- QueryKit/QuerySet/Swift
|
32
|
+
- Quick (0.2.2)
|
33
|
+
|
34
|
+
DEPENDENCIES:
|
35
|
+
- QueryKit
|
36
|
+
- Quick
|
37
|
+
|
38
|
+
SPEC CHECKSUMS:
|
39
|
+
QueryKit: c2ded7784aa57d182a1998e06381633da178443d
|
40
|
+
Quick: 7b89ff625e72ef931c2a9ef2f25ac3a9d2457763
|
41
|
+
|
42
|
+
COCOAPODS: 0.36.0.beta.2
|
@@ -0,0 +1,995 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
06032E73E233AF064717612A /* Pods-TestProject-QueryKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9035BF94B34A6C2F64DAF79B /* Pods-TestProject-QueryKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
11
|
+
07CF558C4A4BFDB2F7B6F4DB /* QCKDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = E484C3841652B5FF4510FA97 /* QCKDSL.m */; };
|
12
|
+
0FEBBA49FDF12C76BFDDC992 /* QuickSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = C39D0C958F42ABB6265861A9 /* QuickSpec.m */; };
|
13
|
+
18D8918FA894CB35937F7F58 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FF1E2270C16DEDE404C837F /* XCTest.framework */; };
|
14
|
+
1B6747CAA2D38AF64883679E /* QueryKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C707955730DEDAD9809434D /* QueryKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
15
|
+
285F82FC9C7EBE12B0C97A21 /* QKQuerySet.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5321D028DF24FD5085219D /* QKQuerySet.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
16
|
+
301EE5AD7B414593B1948523 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148BA805EAD4B10203FD868E /* Foundation.framework */; };
|
17
|
+
3A627E0BDBB41CEB397EE4FC /* Expression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 408E12F5AB23ED282B88DF94 /* Expression.swift */; };
|
18
|
+
43C7EB74DE7790FC4C16B825 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148BA805EAD4B10203FD868E /* Foundation.framework */; };
|
19
|
+
492A63DE5CD9637E0F6168B2 /* Predicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09ED2AEB3B53F0DBCE95DA93 /* Predicate.swift */; };
|
20
|
+
52978AE08582C25E6269D836 /* QuickConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A653C7BDF48385EFF387588 /* QuickConfiguration.m */; };
|
21
|
+
55D70AD0173B620D1A6CC76C /* Pods-TestProjectTests-Quick-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C913F38D2E39864CBD7973DF /* Pods-TestProjectTests-Quick-dummy.m */; };
|
22
|
+
5E777CD40B27B846581B2E52 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148BA805EAD4B10203FD868E /* Foundation.framework */; };
|
23
|
+
65F7BA58C6AA4244C8565B9A /* QKQuerySet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59521026FADACE3C7B15E3E7 /* QKQuerySet.swift */; };
|
24
|
+
65FB76806012FA425E13CD56 /* Configuration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCEB9D6AF5CF21176A7F2BD9 /* Configuration.swift */; };
|
25
|
+
6C9D3D842B082BD5D496DE6F /* QKAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 551FAFC81A8D50493EDB4ADF /* QKAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
26
|
+
73E3B3E87A31CD605C38E58B /* QKQuerySet.m in Sources */ = {isa = PBXBuildFile; fileRef = E9DC0DF2D318B25300827B7E /* QKQuerySet.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
27
|
+
77313D75816E72DE5821439B /* Quick.h in Headers */ = {isa = PBXBuildFile; fileRef = DBDC90EBC58A687BE7AA462C /* Quick.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
28
|
+
7D23003E882925BF46DE0E57 /* QKAttribute.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70CD07CF85F93EEEAAD560EE /* QKAttribute.swift */; };
|
29
|
+
82147DF93FE68C95F5FDD7A3 /* NSString+QCKSelectorName.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AD24CBF1E12718D619BBE94 /* NSString+QCKSelectorName.m */; };
|
30
|
+
8BAE2FA77976EF6C81E3599C /* ExampleMetadata.swift in Sources */ = {isa = PBXBuildFile; fileRef = 294086DAEFBCEFC23A8E66C4 /* ExampleMetadata.swift */; };
|
31
|
+
9423CAF6518D520B21C870A6 /* Attribute.swift in Sources */ = {isa = PBXBuildFile; fileRef = 811A2C5067133458041BC054 /* Attribute.swift */; };
|
32
|
+
977520A1CFD07D5CFC63D683 /* NSString+QCKSelectorName.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F229429840CA5D331E620E0 /* NSString+QCKSelectorName.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
33
|
+
9FF20438D7BB156D31FA2119 /* Callsite.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C4791C9F167A049ACE9849A /* Callsite.swift */; };
|
34
|
+
A1C559A094CA7E4ADB9796C5 /* QuerySet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72A03D389E6B10048323AA84 /* QuerySet.swift */; };
|
35
|
+
A517A7DBDD05681DFEC5FEC8 /* Failure.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE8BF1AED8473D8450FA4699 /* Failure.swift */; };
|
36
|
+
A9F6ADEAB1226E059A63E282 /* QuickSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E3F34EEC8F8E875AF8FCDE /* QuickSpec.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
37
|
+
AF3C9FCA43094308D3EF06A8 /* World.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EBD98EE71CB4B4927D46C54 /* World.swift */; };
|
38
|
+
B210861B1714FF7088636CB4 /* ExampleGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B5B3E810329DDD83320FC19 /* ExampleGroup.swift */; };
|
39
|
+
B3B3F6D23815BF93EFA9D977 /* DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50F80C895FE269B502E5D48D /* DSL.swift */; };
|
40
|
+
B556CA467C1E6DD308C641A2 /* QKAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = B18FC4C0032989A7D1224371 /* QKAttribute.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
41
|
+
B5E8E743E1B24B86B2EF10DF /* Example.swift in Sources */ = {isa = PBXBuildFile; fileRef = D98BC4B5B53B6598BABFEE73 /* Example.swift */; };
|
42
|
+
B6A18E58B4E85E59BD697B79 /* SuiteHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7D161F7B05452F8AAD3B3BF /* SuiteHooks.swift */; };
|
43
|
+
B985A7E614133FB5D901F4D6 /* World+DSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC9BD3C7DCF81A129B6A1A4E /* World+DSL.swift */; };
|
44
|
+
C452656DF611192D6E0B1A16 /* Closures.swift in Sources */ = {isa = PBXBuildFile; fileRef = B33DA61A9A09B440278A5D35 /* Closures.swift */; };
|
45
|
+
CD83627F970E2F0A35AAC5FB /* Pods-TestProjectTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8FE2B4CA0AAA4216CE231D /* Pods-TestProjectTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
46
|
+
CE12950BC74E8933ED23F4AE /* ExampleHooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24DBBF8F9A09C87AECF2CF86 /* ExampleHooks.swift */; };
|
47
|
+
DD6323F7A39A6D79E4667B0C /* Pods-TestProject-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AC47BAE588BE85F4042BE3 /* Pods-TestProject-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
48
|
+
E093D3DA7906E46EBB5DED4C /* QCKDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E76E9320620E94B0580E1F6 /* QCKDSL.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
49
|
+
EB3A507CD8A5082BAA7F2E1D /* Pods-TestProjectTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D542E27808CFAF6C13546A4D /* Pods-TestProjectTests-dummy.m */; };
|
50
|
+
EC0C06500DBCA5EDA3B6B7B9 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 186FF76461D25AEC80B2CD40 /* Filter.swift */; };
|
51
|
+
EE83DCFFB84347339D3133A3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148BA805EAD4B10203FD868E /* Foundation.framework */; };
|
52
|
+
F75142DFE4F8DD33B0AF7348 /* Pods-TestProjectTests-Quick-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 02F4F7FF2D4EEFABD51F3EC7 /* Pods-TestProjectTests-Quick-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
53
|
+
F9EC78CEC4339086760066FE /* Pods-TestProject-QueryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0115D38937AC36CDD402B167 /* Pods-TestProject-QueryKit-dummy.m */; };
|
54
|
+
FB559B3BCF7E6CA6B62140D2 /* Pods-TestProject-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E553686ADA21D45779269C96 /* Pods-TestProject-dummy.m */; };
|
55
|
+
FDEE8355ED663D34B543C693 /* QuickConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA10E32B29BA77929E70EF6 /* QuickConfiguration.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
56
|
+
/* End PBXBuildFile section */
|
57
|
+
|
58
|
+
/* Begin PBXContainerItemProxy section */
|
59
|
+
BD5E4220053C053E30D91222 /* PBXContainerItemProxy */ = {
|
60
|
+
isa = PBXContainerItemProxy;
|
61
|
+
containerPortal = 82D169BDBB6B2B9D0BD46EDC /* Project object */;
|
62
|
+
proxyType = 1;
|
63
|
+
remoteGlobalIDString = 048A4E20006621F6BEDB7B7C;
|
64
|
+
remoteInfo = "Pods-TestProjectTests-Quick";
|
65
|
+
};
|
66
|
+
C809EB75638B2E9D1FC047BC /* PBXContainerItemProxy */ = {
|
67
|
+
isa = PBXContainerItemProxy;
|
68
|
+
containerPortal = 82D169BDBB6B2B9D0BD46EDC /* Project object */;
|
69
|
+
proxyType = 1;
|
70
|
+
remoteGlobalIDString = 09276CB15253B96665979B38;
|
71
|
+
remoteInfo = "Pods-TestProject-QueryKit";
|
72
|
+
};
|
73
|
+
/* End PBXContainerItemProxy section */
|
74
|
+
|
75
|
+
/* Begin PBXFileReference section */
|
76
|
+
0115D38937AC36CDD402B167 /* Pods-TestProject-QueryKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TestProject-QueryKit-dummy.m"; sourceTree = "<group>"; };
|
77
|
+
02F4F7FF2D4EEFABD51F3EC7 /* Pods-TestProjectTests-Quick-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProjectTests-Quick-umbrella.h"; sourceTree = "<group>"; };
|
78
|
+
04AC47BAE588BE85F4042BE3 /* Pods-TestProject-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProject-umbrella.h"; sourceTree = "<group>"; };
|
79
|
+
091918AAF1BB284EE36632C6 /* Pods-TestProject-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TestProject-acknowledgements.plist"; sourceTree = "<group>"; };
|
80
|
+
09ED2AEB3B53F0DBCE95DA93 /* Predicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Predicate.swift; path = QueryKit/Predicate.swift; sourceTree = "<group>"; };
|
81
|
+
0C4791C9F167A049ACE9849A /* Callsite.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Callsite.swift; path = Quick/Callsite.swift; sourceTree = "<group>"; };
|
82
|
+
11B88C3BDEF0847929CF9439 /* Pods-TestProject.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProject.release.xcconfig"; sourceTree = "<group>"; };
|
83
|
+
11F82B19074A030F27981314 /* Pods-TestProjectTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProjectTests.debug.xcconfig"; sourceTree = "<group>"; };
|
84
|
+
145F49827CDDF0C556DC5497 /* QueryKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = QueryKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
85
|
+
148BA805EAD4B10203FD868E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
|
86
|
+
1580AFF0624DBAAF64A1130F /* Pods-TestProjectTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-TestProjectTests-acknowledgements.plist"; sourceTree = "<group>"; };
|
87
|
+
186FF76461D25AEC80B2CD40 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Quick/Filter.swift; sourceTree = "<group>"; };
|
88
|
+
19663D59CA083C164EAC7156 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
89
|
+
1D9C0495A9A4D5D52B25E78A /* Pods-TestProject-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TestProject-acknowledgements.markdown"; sourceTree = "<group>"; };
|
90
|
+
1F229429840CA5D331E620E0 /* NSString+QCKSelectorName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+QCKSelectorName.h"; path = "Quick/NSString+QCKSelectorName.h"; sourceTree = "<group>"; };
|
91
|
+
2300FC5A713104011C8A7FE6 /* Pods-TestProjectTests-Quick-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProjectTests-Quick-prefix.pch"; sourceTree = "<group>"; };
|
92
|
+
24DBBF8F9A09C87AECF2CF86 /* ExampleHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleHooks.swift; path = Quick/Hooks/ExampleHooks.swift; sourceTree = "<group>"; };
|
93
|
+
294086DAEFBCEFC23A8E66C4 /* ExampleMetadata.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleMetadata.swift; path = Quick/ExampleMetadata.swift; sourceTree = "<group>"; };
|
94
|
+
2C1FE72D7450A3A172033D56 /* Pods-TestProject-QueryKit-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProject-QueryKit-Private.xcconfig"; sourceTree = "<group>"; };
|
95
|
+
3B5B3E810329DDD83320FC19 /* ExampleGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExampleGroup.swift; path = Quick/ExampleGroup.swift; sourceTree = "<group>"; };
|
96
|
+
3E76E9320620E94B0580E1F6 /* QCKDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QCKDSL.h; path = Quick/DSL/QCKDSL.h; sourceTree = "<group>"; };
|
97
|
+
408E12F5AB23ED282B88DF94 /* Expression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Expression.swift; path = QueryKit/Expression.swift; sourceTree = "<group>"; };
|
98
|
+
4AD24CBF1E12718D619BBE94 /* NSString+QCKSelectorName.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+QCKSelectorName.m"; path = "Quick/NSString+QCKSelectorName.m"; sourceTree = "<group>"; };
|
99
|
+
4CDB7548EFE5699CD6E9713F /* Pods_TestProjectTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TestProjectTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
100
|
+
50F80C895FE269B502E5D48D /* DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DSL.swift; path = Quick/DSL/DSL.swift; sourceTree = "<group>"; };
|
101
|
+
551FAFC81A8D50493EDB4ADF /* QKAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QKAttribute.h; path = QueryKit/ObjectiveC/QKAttribute.h; sourceTree = "<group>"; };
|
102
|
+
59521026FADACE3C7B15E3E7 /* QKQuerySet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QKQuerySet.swift; path = QueryKit/ObjectiveC/QKQuerySet.swift; sourceTree = "<group>"; };
|
103
|
+
5F3C3913AD5E7779754EC5A9 /* Pods-TestProjectTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-TestProjectTests-acknowledgements.markdown"; sourceTree = "<group>"; };
|
104
|
+
6A653C7BDF48385EFF387588 /* QuickConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickConfiguration.m; path = Quick/Configuration/QuickConfiguration.m; sourceTree = "<group>"; };
|
105
|
+
6C707955730DEDAD9809434D /* QueryKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueryKit.h; path = QueryKit/QueryKit.h; sourceTree = "<group>"; };
|
106
|
+
6EBD98EE71CB4B4927D46C54 /* World.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = World.swift; path = Quick/World.swift; sourceTree = "<group>"; };
|
107
|
+
70CD07CF85F93EEEAAD560EE /* QKAttribute.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QKAttribute.swift; path = QueryKit/ObjectiveC/QKAttribute.swift; sourceTree = "<group>"; };
|
108
|
+
72A03D389E6B10048323AA84 /* QuerySet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QuerySet.swift; path = QueryKit/QuerySet.swift; sourceTree = "<group>"; };
|
109
|
+
78627253F41A78BEDE554D97 /* Pods-TestProjectTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-TestProjectTests.modulemap"; sourceTree = "<group>"; };
|
110
|
+
79E2444953146E608CC4BB20 /* Quick.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
111
|
+
7E3AF1ECA359E1CA46310306 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
112
|
+
811A2C5067133458041BC054 /* Attribute.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Attribute.swift; path = QueryKit/Attribute.swift; sourceTree = "<group>"; };
|
113
|
+
85BB8E37FC92AFDEDDB3F278 /* Pods-TestProject-QueryKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-TestProject-QueryKit.modulemap"; sourceTree = "<group>"; };
|
114
|
+
9035BF94B34A6C2F64DAF79B /* Pods-TestProject-QueryKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProject-QueryKit-umbrella.h"; sourceTree = "<group>"; };
|
115
|
+
906810260C2134EBA4FAB8FF /* Pods-TestProjectTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TestProjectTests-resources.sh"; sourceTree = "<group>"; };
|
116
|
+
91BC249B26EB23093CB18A22 /* Pods-TestProject-QueryKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProject-QueryKit.xcconfig"; sourceTree = "<group>"; };
|
117
|
+
9934F688DD2EE9204F134E8E /* Pods-TestProject.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-TestProject.modulemap"; sourceTree = "<group>"; };
|
118
|
+
9AF5D1F5AEDF405684DCDE6C /* Pods-TestProject-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProject-environment.h"; sourceTree = "<group>"; };
|
119
|
+
9FF1E2270C16DEDE404C837F /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
|
120
|
+
A3D8AA9E5140773A36443B46 /* Pods-TestProjectTests-Quick.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProjectTests-Quick.xcconfig"; sourceTree = "<group>"; };
|
121
|
+
A7B57E61F92B4E8AB3B95A02 /* Pods-TestProjectTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TestProjectTests-frameworks.sh"; sourceTree = "<group>"; };
|
122
|
+
A92D11547E5998998701CDB6 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
123
|
+
AB5321D028DF24FD5085219D /* QKQuerySet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QKQuerySet.h; path = QueryKit/ObjectiveC/QKQuerySet.h; sourceTree = "<group>"; };
|
124
|
+
B18FC4C0032989A7D1224371 /* QKAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QKAttribute.m; path = QueryKit/ObjectiveC/QKAttribute.m; sourceTree = "<group>"; };
|
125
|
+
B2E3F34EEC8F8E875AF8FCDE /* QuickSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickSpec.h; path = Quick/QuickSpec.h; sourceTree = "<group>"; };
|
126
|
+
B33DA61A9A09B440278A5D35 /* Closures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Closures.swift; path = Quick/Hooks/Closures.swift; sourceTree = "<group>"; };
|
127
|
+
B73A1C25818B3077A9A3BCEE /* Pods-TestProjectTests-Quick.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-TestProjectTests-Quick.modulemap"; sourceTree = "<group>"; };
|
128
|
+
BAAC49D6AADDB6DAA1976F94 /* Pods_TestProject.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TestProject.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
129
|
+
BEBB14B4FABFAA1D14AEE8FD /* Pods-TestProject-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TestProject-frameworks.sh"; sourceTree = "<group>"; };
|
130
|
+
C37D4DE2BD7DE21DD5D44BC4 /* Pods-TestProjectTests-Quick-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProjectTests-Quick-Private.xcconfig"; sourceTree = "<group>"; };
|
131
|
+
C39D0C958F42ABB6265861A9 /* QuickSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QuickSpec.m; path = Quick/QuickSpec.m; sourceTree = "<group>"; };
|
132
|
+
C7D161F7B05452F8AAD3B3BF /* SuiteHooks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SuiteHooks.swift; path = Quick/Hooks/SuiteHooks.swift; sourceTree = "<group>"; };
|
133
|
+
C913F38D2E39864CBD7973DF /* Pods-TestProjectTests-Quick-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TestProjectTests-Quick-dummy.m"; sourceTree = "<group>"; };
|
134
|
+
CB9A9AF2A121235959FE0E6B /* Pods-TestProjectTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProjectTests.release.xcconfig"; sourceTree = "<group>"; };
|
135
|
+
CC9BD3C7DCF81A129B6A1A4E /* World+DSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "World+DSL.swift"; path = "Quick/DSL/World+DSL.swift"; sourceTree = "<group>"; };
|
136
|
+
CCEB9D6AF5CF21176A7F2BD9 /* Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Configuration.swift; path = Quick/Configuration/Configuration.swift; sourceTree = "<group>"; };
|
137
|
+
CE8FE2B4CA0AAA4216CE231D /* Pods-TestProjectTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProjectTests-umbrella.h"; sourceTree = "<group>"; };
|
138
|
+
D542E27808CFAF6C13546A4D /* Pods-TestProjectTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TestProjectTests-dummy.m"; sourceTree = "<group>"; };
|
139
|
+
D7C7E1A99DD9EBC31B3F8E4C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
140
|
+
D98BC4B5B53B6598BABFEE73 /* Example.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Example.swift; path = Quick/Example.swift; sourceTree = "<group>"; };
|
141
|
+
DA829B8A284391C2BB998B46 /* Pods-TestProjectTests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProjectTests-environment.h"; sourceTree = "<group>"; };
|
142
|
+
DBDC90EBC58A687BE7AA462C /* Quick.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Quick.h; path = Quick/Quick.h; sourceTree = "<group>"; };
|
143
|
+
DE8BF1AED8473D8450FA4699 /* Failure.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Failure.swift; path = Quick/Failure.swift; sourceTree = "<group>"; };
|
144
|
+
E484C3841652B5FF4510FA97 /* QCKDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QCKDSL.m; path = Quick/DSL/QCKDSL.m; sourceTree = "<group>"; };
|
145
|
+
E553686ADA21D45779269C96 /* Pods-TestProject-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-TestProject-dummy.m"; sourceTree = "<group>"; };
|
146
|
+
E9DC0DF2D318B25300827B7E /* QKQuerySet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QKQuerySet.m; path = QueryKit/ObjectiveC/QKQuerySet.m; sourceTree = "<group>"; };
|
147
|
+
F380903FC4E2984891538193 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
148
|
+
F643AAB550DD751948DCD0F7 /* Pods-TestProject-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-TestProject-resources.sh"; sourceTree = "<group>"; };
|
149
|
+
FB2D2A8D08FB58427BA60655 /* Pods-TestProject-QueryKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-TestProject-QueryKit-prefix.pch"; sourceTree = "<group>"; };
|
150
|
+
FCA10E32B29BA77929E70EF6 /* QuickConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuickConfiguration.h; path = Quick/Configuration/QuickConfiguration.h; sourceTree = "<group>"; };
|
151
|
+
FF2044B67B52CCA09C6C4AEB /* Pods-TestProject.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-TestProject.debug.xcconfig"; sourceTree = "<group>"; };
|
152
|
+
/* End PBXFileReference section */
|
153
|
+
|
154
|
+
/* Begin PBXFrameworksBuildPhase section */
|
155
|
+
058C50D03FBC004C2EB380B3 /* Frameworks */ = {
|
156
|
+
isa = PBXFrameworksBuildPhase;
|
157
|
+
buildActionMask = 2147483647;
|
158
|
+
files = (
|
159
|
+
EE83DCFFB84347339D3133A3 /* Foundation.framework in Frameworks */,
|
160
|
+
);
|
161
|
+
runOnlyForDeploymentPostprocessing = 0;
|
162
|
+
};
|
163
|
+
7EECD15393447D20CC8E6890 /* Frameworks */ = {
|
164
|
+
isa = PBXFrameworksBuildPhase;
|
165
|
+
buildActionMask = 2147483647;
|
166
|
+
files = (
|
167
|
+
43C7EB74DE7790FC4C16B825 /* Foundation.framework in Frameworks */,
|
168
|
+
18D8918FA894CB35937F7F58 /* XCTest.framework in Frameworks */,
|
169
|
+
);
|
170
|
+
runOnlyForDeploymentPostprocessing = 0;
|
171
|
+
};
|
172
|
+
85D571E868DB310AA55BBEEE /* Frameworks */ = {
|
173
|
+
isa = PBXFrameworksBuildPhase;
|
174
|
+
buildActionMask = 2147483647;
|
175
|
+
files = (
|
176
|
+
5E777CD40B27B846581B2E52 /* Foundation.framework in Frameworks */,
|
177
|
+
);
|
178
|
+
runOnlyForDeploymentPostprocessing = 0;
|
179
|
+
};
|
180
|
+
A2E89C1EE3FF142ED0185E1C /* Frameworks */ = {
|
181
|
+
isa = PBXFrameworksBuildPhase;
|
182
|
+
buildActionMask = 2147483647;
|
183
|
+
files = (
|
184
|
+
301EE5AD7B414593B1948523 /* Foundation.framework in Frameworks */,
|
185
|
+
);
|
186
|
+
runOnlyForDeploymentPostprocessing = 0;
|
187
|
+
};
|
188
|
+
/* End PBXFrameworksBuildPhase section */
|
189
|
+
|
190
|
+
/* Begin PBXGroup section */
|
191
|
+
00E45B99384ED2C93C6F1764 /* Pods-TestProjectTests */ = {
|
192
|
+
isa = PBXGroup;
|
193
|
+
children = (
|
194
|
+
7E3AF1ECA359E1CA46310306 /* Info.plist */,
|
195
|
+
78627253F41A78BEDE554D97 /* Pods-TestProjectTests.modulemap */,
|
196
|
+
5F3C3913AD5E7779754EC5A9 /* Pods-TestProjectTests-acknowledgements.markdown */,
|
197
|
+
1580AFF0624DBAAF64A1130F /* Pods-TestProjectTests-acknowledgements.plist */,
|
198
|
+
D542E27808CFAF6C13546A4D /* Pods-TestProjectTests-dummy.m */,
|
199
|
+
DA829B8A284391C2BB998B46 /* Pods-TestProjectTests-environment.h */,
|
200
|
+
A7B57E61F92B4E8AB3B95A02 /* Pods-TestProjectTests-frameworks.sh */,
|
201
|
+
906810260C2134EBA4FAB8FF /* Pods-TestProjectTests-resources.sh */,
|
202
|
+
CE8FE2B4CA0AAA4216CE231D /* Pods-TestProjectTests-umbrella.h */,
|
203
|
+
11F82B19074A030F27981314 /* Pods-TestProjectTests.debug.xcconfig */,
|
204
|
+
CB9A9AF2A121235959FE0E6B /* Pods-TestProjectTests.release.xcconfig */,
|
205
|
+
);
|
206
|
+
name = "Pods-TestProjectTests";
|
207
|
+
path = "Target Support Files/Pods-TestProjectTests";
|
208
|
+
sourceTree = "<group>";
|
209
|
+
};
|
210
|
+
0BCFCE4E2E949507B0CC4AAE /* Pods-TestProject */ = {
|
211
|
+
isa = PBXGroup;
|
212
|
+
children = (
|
213
|
+
F380903FC4E2984891538193 /* Info.plist */,
|
214
|
+
9934F688DD2EE9204F134E8E /* Pods-TestProject.modulemap */,
|
215
|
+
1D9C0495A9A4D5D52B25E78A /* Pods-TestProject-acknowledgements.markdown */,
|
216
|
+
091918AAF1BB284EE36632C6 /* Pods-TestProject-acknowledgements.plist */,
|
217
|
+
E553686ADA21D45779269C96 /* Pods-TestProject-dummy.m */,
|
218
|
+
9AF5D1F5AEDF405684DCDE6C /* Pods-TestProject-environment.h */,
|
219
|
+
BEBB14B4FABFAA1D14AEE8FD /* Pods-TestProject-frameworks.sh */,
|
220
|
+
F643AAB550DD751948DCD0F7 /* Pods-TestProject-resources.sh */,
|
221
|
+
04AC47BAE588BE85F4042BE3 /* Pods-TestProject-umbrella.h */,
|
222
|
+
FF2044B67B52CCA09C6C4AEB /* Pods-TestProject.debug.xcconfig */,
|
223
|
+
11B88C3BDEF0847929CF9439 /* Pods-TestProject.release.xcconfig */,
|
224
|
+
);
|
225
|
+
name = "Pods-TestProject";
|
226
|
+
path = "Target Support Files/Pods-TestProject";
|
227
|
+
sourceTree = "<group>";
|
228
|
+
};
|
229
|
+
0EEC0148AF9945A86A4F4AAD /* Frameworks */ = {
|
230
|
+
isa = PBXGroup;
|
231
|
+
children = (
|
232
|
+
930AA14658958939601B2FE3 /* iOS */,
|
233
|
+
);
|
234
|
+
name = Frameworks;
|
235
|
+
sourceTree = "<group>";
|
236
|
+
};
|
237
|
+
1F5B74CE68A9B0817278F26F /* Targets Support Files */ = {
|
238
|
+
isa = PBXGroup;
|
239
|
+
children = (
|
240
|
+
0BCFCE4E2E949507B0CC4AAE /* Pods-TestProject */,
|
241
|
+
00E45B99384ED2C93C6F1764 /* Pods-TestProjectTests */,
|
242
|
+
);
|
243
|
+
name = "Targets Support Files";
|
244
|
+
sourceTree = "<group>";
|
245
|
+
};
|
246
|
+
32C1F149E2194A5FF2101D33 = {
|
247
|
+
isa = PBXGroup;
|
248
|
+
children = (
|
249
|
+
A92D11547E5998998701CDB6 /* Podfile */,
|
250
|
+
0EEC0148AF9945A86A4F4AAD /* Frameworks */,
|
251
|
+
8CF294D450D7DFD69ED6A087 /* Pods */,
|
252
|
+
8B89512C3B7EB67EC60B5BFF /* Products */,
|
253
|
+
1F5B74CE68A9B0817278F26F /* Targets Support Files */,
|
254
|
+
);
|
255
|
+
sourceTree = "<group>";
|
256
|
+
};
|
257
|
+
334FCADB264FF794DE992011 /* Bridge */ = {
|
258
|
+
isa = PBXGroup;
|
259
|
+
children = (
|
260
|
+
59521026FADACE3C7B15E3E7 /* QKQuerySet.swift */,
|
261
|
+
);
|
262
|
+
name = Bridge;
|
263
|
+
sourceTree = "<group>";
|
264
|
+
};
|
265
|
+
54E3309EFEE30A67D00E6A4B /* Swift */ = {
|
266
|
+
isa = PBXGroup;
|
267
|
+
children = (
|
268
|
+
72A03D389E6B10048323AA84 /* QuerySet.swift */,
|
269
|
+
);
|
270
|
+
name = Swift;
|
271
|
+
sourceTree = "<group>";
|
272
|
+
};
|
273
|
+
5575CC80DBC8C7DB57EF25B7 /* QueryKit */ = {
|
274
|
+
isa = PBXGroup;
|
275
|
+
children = (
|
276
|
+
6C707955730DEDAD9809434D /* QueryKit.h */,
|
277
|
+
A78197FC529B764BC6F1883B /* Attribute */,
|
278
|
+
CA22E67688D92A247172071D /* QuerySet */,
|
279
|
+
CA28B8966056A53AF2183A49 /* Support Files */,
|
280
|
+
);
|
281
|
+
path = QueryKit;
|
282
|
+
sourceTree = "<group>";
|
283
|
+
};
|
284
|
+
602587A784992E7019A45CF1 /* Swift */ = {
|
285
|
+
isa = PBXGroup;
|
286
|
+
children = (
|
287
|
+
811A2C5067133458041BC054 /* Attribute.swift */,
|
288
|
+
408E12F5AB23ED282B88DF94 /* Expression.swift */,
|
289
|
+
09ED2AEB3B53F0DBCE95DA93 /* Predicate.swift */,
|
290
|
+
);
|
291
|
+
name = Swift;
|
292
|
+
sourceTree = "<group>";
|
293
|
+
};
|
294
|
+
62363C166A59C9D8FE901609 /* ObjectiveC */ = {
|
295
|
+
isa = PBXGroup;
|
296
|
+
children = (
|
297
|
+
551FAFC81A8D50493EDB4ADF /* QKAttribute.h */,
|
298
|
+
B18FC4C0032989A7D1224371 /* QKAttribute.m */,
|
299
|
+
);
|
300
|
+
name = ObjectiveC;
|
301
|
+
sourceTree = "<group>";
|
302
|
+
};
|
303
|
+
8B89512C3B7EB67EC60B5BFF /* Products */ = {
|
304
|
+
isa = PBXGroup;
|
305
|
+
children = (
|
306
|
+
BAAC49D6AADDB6DAA1976F94 /* Pods_TestProject.framework */,
|
307
|
+
4CDB7548EFE5699CD6E9713F /* Pods_TestProjectTests.framework */,
|
308
|
+
145F49827CDDF0C556DC5497 /* QueryKit.framework */,
|
309
|
+
79E2444953146E608CC4BB20 /* Quick.framework */,
|
310
|
+
);
|
311
|
+
name = Products;
|
312
|
+
sourceTree = "<group>";
|
313
|
+
};
|
314
|
+
8CF294D450D7DFD69ED6A087 /* Pods */ = {
|
315
|
+
isa = PBXGroup;
|
316
|
+
children = (
|
317
|
+
5575CC80DBC8C7DB57EF25B7 /* QueryKit */,
|
318
|
+
E9354C10788781316CFB1396 /* Quick */,
|
319
|
+
);
|
320
|
+
name = Pods;
|
321
|
+
sourceTree = "<group>";
|
322
|
+
};
|
323
|
+
930AA14658958939601B2FE3 /* iOS */ = {
|
324
|
+
isa = PBXGroup;
|
325
|
+
children = (
|
326
|
+
148BA805EAD4B10203FD868E /* Foundation.framework */,
|
327
|
+
9FF1E2270C16DEDE404C837F /* XCTest.framework */,
|
328
|
+
);
|
329
|
+
name = iOS;
|
330
|
+
sourceTree = "<group>";
|
331
|
+
};
|
332
|
+
A0FB893DAF1FB8E8805024FF /* Bridge */ = {
|
333
|
+
isa = PBXGroup;
|
334
|
+
children = (
|
335
|
+
70CD07CF85F93EEEAAD560EE /* QKAttribute.swift */,
|
336
|
+
);
|
337
|
+
name = Bridge;
|
338
|
+
sourceTree = "<group>";
|
339
|
+
};
|
340
|
+
A78197FC529B764BC6F1883B /* Attribute */ = {
|
341
|
+
isa = PBXGroup;
|
342
|
+
children = (
|
343
|
+
A0FB893DAF1FB8E8805024FF /* Bridge */,
|
344
|
+
62363C166A59C9D8FE901609 /* ObjectiveC */,
|
345
|
+
602587A784992E7019A45CF1 /* Swift */,
|
346
|
+
);
|
347
|
+
name = Attribute;
|
348
|
+
sourceTree = "<group>";
|
349
|
+
};
|
350
|
+
CA22E67688D92A247172071D /* QuerySet */ = {
|
351
|
+
isa = PBXGroup;
|
352
|
+
children = (
|
353
|
+
334FCADB264FF794DE992011 /* Bridge */,
|
354
|
+
E828979A26FF2CC1FB76D8BF /* ObjectiveC */,
|
355
|
+
54E3309EFEE30A67D00E6A4B /* Swift */,
|
356
|
+
);
|
357
|
+
name = QuerySet;
|
358
|
+
sourceTree = "<group>";
|
359
|
+
};
|
360
|
+
CA28B8966056A53AF2183A49 /* Support Files */ = {
|
361
|
+
isa = PBXGroup;
|
362
|
+
children = (
|
363
|
+
19663D59CA083C164EAC7156 /* Info.plist */,
|
364
|
+
85BB8E37FC92AFDEDDB3F278 /* Pods-TestProject-QueryKit.modulemap */,
|
365
|
+
91BC249B26EB23093CB18A22 /* Pods-TestProject-QueryKit.xcconfig */,
|
366
|
+
2C1FE72D7450A3A172033D56 /* Pods-TestProject-QueryKit-Private.xcconfig */,
|
367
|
+
0115D38937AC36CDD402B167 /* Pods-TestProject-QueryKit-dummy.m */,
|
368
|
+
FB2D2A8D08FB58427BA60655 /* Pods-TestProject-QueryKit-prefix.pch */,
|
369
|
+
9035BF94B34A6C2F64DAF79B /* Pods-TestProject-QueryKit-umbrella.h */,
|
370
|
+
);
|
371
|
+
name = "Support Files";
|
372
|
+
path = "../Target Support Files/Pods-TestProject-QueryKit";
|
373
|
+
sourceTree = "<group>";
|
374
|
+
};
|
375
|
+
E226EAB2F3CC78CC1A7D3692 /* Support Files */ = {
|
376
|
+
isa = PBXGroup;
|
377
|
+
children = (
|
378
|
+
D7C7E1A99DD9EBC31B3F8E4C /* Info.plist */,
|
379
|
+
B73A1C25818B3077A9A3BCEE /* Pods-TestProjectTests-Quick.modulemap */,
|
380
|
+
A3D8AA9E5140773A36443B46 /* Pods-TestProjectTests-Quick.xcconfig */,
|
381
|
+
C37D4DE2BD7DE21DD5D44BC4 /* Pods-TestProjectTests-Quick-Private.xcconfig */,
|
382
|
+
C913F38D2E39864CBD7973DF /* Pods-TestProjectTests-Quick-dummy.m */,
|
383
|
+
2300FC5A713104011C8A7FE6 /* Pods-TestProjectTests-Quick-prefix.pch */,
|
384
|
+
02F4F7FF2D4EEFABD51F3EC7 /* Pods-TestProjectTests-Quick-umbrella.h */,
|
385
|
+
);
|
386
|
+
name = "Support Files";
|
387
|
+
path = "../Target Support Files/Pods-TestProjectTests-Quick";
|
388
|
+
sourceTree = "<group>";
|
389
|
+
};
|
390
|
+
E828979A26FF2CC1FB76D8BF /* ObjectiveC */ = {
|
391
|
+
isa = PBXGroup;
|
392
|
+
children = (
|
393
|
+
AB5321D028DF24FD5085219D /* QKQuerySet.h */,
|
394
|
+
E9DC0DF2D318B25300827B7E /* QKQuerySet.m */,
|
395
|
+
);
|
396
|
+
name = ObjectiveC;
|
397
|
+
sourceTree = "<group>";
|
398
|
+
};
|
399
|
+
E9354C10788781316CFB1396 /* Quick */ = {
|
400
|
+
isa = PBXGroup;
|
401
|
+
children = (
|
402
|
+
0C4791C9F167A049ACE9849A /* Callsite.swift */,
|
403
|
+
B33DA61A9A09B440278A5D35 /* Closures.swift */,
|
404
|
+
CCEB9D6AF5CF21176A7F2BD9 /* Configuration.swift */,
|
405
|
+
50F80C895FE269B502E5D48D /* DSL.swift */,
|
406
|
+
D98BC4B5B53B6598BABFEE73 /* Example.swift */,
|
407
|
+
3B5B3E810329DDD83320FC19 /* ExampleGroup.swift */,
|
408
|
+
24DBBF8F9A09C87AECF2CF86 /* ExampleHooks.swift */,
|
409
|
+
294086DAEFBCEFC23A8E66C4 /* ExampleMetadata.swift */,
|
410
|
+
DE8BF1AED8473D8450FA4699 /* Failure.swift */,
|
411
|
+
186FF76461D25AEC80B2CD40 /* Filter.swift */,
|
412
|
+
1F229429840CA5D331E620E0 /* NSString+QCKSelectorName.h */,
|
413
|
+
4AD24CBF1E12718D619BBE94 /* NSString+QCKSelectorName.m */,
|
414
|
+
3E76E9320620E94B0580E1F6 /* QCKDSL.h */,
|
415
|
+
E484C3841652B5FF4510FA97 /* QCKDSL.m */,
|
416
|
+
DBDC90EBC58A687BE7AA462C /* Quick.h */,
|
417
|
+
FCA10E32B29BA77929E70EF6 /* QuickConfiguration.h */,
|
418
|
+
6A653C7BDF48385EFF387588 /* QuickConfiguration.m */,
|
419
|
+
B2E3F34EEC8F8E875AF8FCDE /* QuickSpec.h */,
|
420
|
+
C39D0C958F42ABB6265861A9 /* QuickSpec.m */,
|
421
|
+
C7D161F7B05452F8AAD3B3BF /* SuiteHooks.swift */,
|
422
|
+
6EBD98EE71CB4B4927D46C54 /* World.swift */,
|
423
|
+
CC9BD3C7DCF81A129B6A1A4E /* World+DSL.swift */,
|
424
|
+
E226EAB2F3CC78CC1A7D3692 /* Support Files */,
|
425
|
+
);
|
426
|
+
path = Quick;
|
427
|
+
sourceTree = "<group>";
|
428
|
+
};
|
429
|
+
/* End PBXGroup section */
|
430
|
+
|
431
|
+
/* Begin PBXHeadersBuildPhase section */
|
432
|
+
48F5909E744081A49E2228DB /* Headers */ = {
|
433
|
+
isa = PBXHeadersBuildPhase;
|
434
|
+
buildActionMask = 2147483647;
|
435
|
+
files = (
|
436
|
+
CD83627F970E2F0A35AAC5FB /* Pods-TestProjectTests-umbrella.h in Headers */,
|
437
|
+
);
|
438
|
+
runOnlyForDeploymentPostprocessing = 0;
|
439
|
+
};
|
440
|
+
65C2F3F7F7F1E92F344FC6B4 /* Headers */ = {
|
441
|
+
isa = PBXHeadersBuildPhase;
|
442
|
+
buildActionMask = 2147483647;
|
443
|
+
files = (
|
444
|
+
06032E73E233AF064717612A /* Pods-TestProject-QueryKit-umbrella.h in Headers */,
|
445
|
+
6C9D3D842B082BD5D496DE6F /* QKAttribute.h in Headers */,
|
446
|
+
285F82FC9C7EBE12B0C97A21 /* QKQuerySet.h in Headers */,
|
447
|
+
1B6747CAA2D38AF64883679E /* QueryKit.h in Headers */,
|
448
|
+
);
|
449
|
+
runOnlyForDeploymentPostprocessing = 0;
|
450
|
+
};
|
451
|
+
7B44C1FBA5925C7D84EA2118 /* Headers */ = {
|
452
|
+
isa = PBXHeadersBuildPhase;
|
453
|
+
buildActionMask = 2147483647;
|
454
|
+
files = (
|
455
|
+
DD6323F7A39A6D79E4667B0C /* Pods-TestProject-umbrella.h in Headers */,
|
456
|
+
);
|
457
|
+
runOnlyForDeploymentPostprocessing = 0;
|
458
|
+
};
|
459
|
+
E1E45C85822B286A97CC25BE /* Headers */ = {
|
460
|
+
isa = PBXHeadersBuildPhase;
|
461
|
+
buildActionMask = 2147483647;
|
462
|
+
files = (
|
463
|
+
977520A1CFD07D5CFC63D683 /* NSString+QCKSelectorName.h in Headers */,
|
464
|
+
F75142DFE4F8DD33B0AF7348 /* Pods-TestProjectTests-Quick-umbrella.h in Headers */,
|
465
|
+
E093D3DA7906E46EBB5DED4C /* QCKDSL.h in Headers */,
|
466
|
+
77313D75816E72DE5821439B /* Quick.h in Headers */,
|
467
|
+
FDEE8355ED663D34B543C693 /* QuickConfiguration.h in Headers */,
|
468
|
+
A9F6ADEAB1226E059A63E282 /* QuickSpec.h in Headers */,
|
469
|
+
);
|
470
|
+
runOnlyForDeploymentPostprocessing = 0;
|
471
|
+
};
|
472
|
+
/* End PBXHeadersBuildPhase section */
|
473
|
+
|
474
|
+
/* Begin PBXNativeTarget section */
|
475
|
+
048A4E20006621F6BEDB7B7C /* Pods-TestProjectTests-Quick */ = {
|
476
|
+
isa = PBXNativeTarget;
|
477
|
+
buildConfigurationList = 025660CF125DAC6DF5C7E6B2 /* Build configuration list for PBXNativeTarget "Pods-TestProjectTests-Quick" */;
|
478
|
+
buildPhases = (
|
479
|
+
E7DFE60ABC166820BB6651CD /* Sources */,
|
480
|
+
7EECD15393447D20CC8E6890 /* Frameworks */,
|
481
|
+
E1E45C85822B286A97CC25BE /* Headers */,
|
482
|
+
);
|
483
|
+
buildRules = (
|
484
|
+
);
|
485
|
+
dependencies = (
|
486
|
+
);
|
487
|
+
name = "Pods-TestProjectTests-Quick";
|
488
|
+
productName = "Pods-TestProjectTests-Quick";
|
489
|
+
productReference = 79E2444953146E608CC4BB20 /* Quick.framework */;
|
490
|
+
productType = "com.apple.product-type.framework";
|
491
|
+
};
|
492
|
+
09276CB15253B96665979B38 /* Pods-TestProject-QueryKit */ = {
|
493
|
+
isa = PBXNativeTarget;
|
494
|
+
buildConfigurationList = 703615A0EAC6682C16219CFD /* Build configuration list for PBXNativeTarget "Pods-TestProject-QueryKit" */;
|
495
|
+
buildPhases = (
|
496
|
+
88DB1FDE689115B270DD8CAC /* Sources */,
|
497
|
+
A2E89C1EE3FF142ED0185E1C /* Frameworks */,
|
498
|
+
65C2F3F7F7F1E92F344FC6B4 /* Headers */,
|
499
|
+
);
|
500
|
+
buildRules = (
|
501
|
+
);
|
502
|
+
dependencies = (
|
503
|
+
);
|
504
|
+
name = "Pods-TestProject-QueryKit";
|
505
|
+
productName = "Pods-TestProject-QueryKit";
|
506
|
+
productReference = 145F49827CDDF0C556DC5497 /* QueryKit.framework */;
|
507
|
+
productType = "com.apple.product-type.framework";
|
508
|
+
};
|
509
|
+
1265922112F8F94DE388C4C1 /* Pods-TestProjectTests */ = {
|
510
|
+
isa = PBXNativeTarget;
|
511
|
+
buildConfigurationList = 8980385AF082978A69D3FA28 /* Build configuration list for PBXNativeTarget "Pods-TestProjectTests" */;
|
512
|
+
buildPhases = (
|
513
|
+
50367EA0840D278DE7228216 /* Sources */,
|
514
|
+
85D571E868DB310AA55BBEEE /* Frameworks */,
|
515
|
+
48F5909E744081A49E2228DB /* Headers */,
|
516
|
+
);
|
517
|
+
buildRules = (
|
518
|
+
);
|
519
|
+
dependencies = (
|
520
|
+
57DAEA729BD7ECF75BB49366 /* PBXTargetDependency */,
|
521
|
+
);
|
522
|
+
name = "Pods-TestProjectTests";
|
523
|
+
productName = "Pods-TestProjectTests";
|
524
|
+
productReference = 4CDB7548EFE5699CD6E9713F /* Pods_TestProjectTests.framework */;
|
525
|
+
productType = "com.apple.product-type.framework";
|
526
|
+
};
|
527
|
+
1C353B952439AC7C54230EA4 /* Pods-TestProject */ = {
|
528
|
+
isa = PBXNativeTarget;
|
529
|
+
buildConfigurationList = 396E4D50A0925C3B6612FDF4 /* Build configuration list for PBXNativeTarget "Pods-TestProject" */;
|
530
|
+
buildPhases = (
|
531
|
+
5356DA5943C1AC97F5D350CF /* Sources */,
|
532
|
+
058C50D03FBC004C2EB380B3 /* Frameworks */,
|
533
|
+
7B44C1FBA5925C7D84EA2118 /* Headers */,
|
534
|
+
);
|
535
|
+
buildRules = (
|
536
|
+
);
|
537
|
+
dependencies = (
|
538
|
+
61B463B565EF2BA9E7D72B89 /* PBXTargetDependency */,
|
539
|
+
);
|
540
|
+
name = "Pods-TestProject";
|
541
|
+
productName = "Pods-TestProject";
|
542
|
+
productReference = BAAC49D6AADDB6DAA1976F94 /* Pods_TestProject.framework */;
|
543
|
+
productType = "com.apple.product-type.framework";
|
544
|
+
};
|
545
|
+
/* End PBXNativeTarget section */
|
546
|
+
|
547
|
+
/* Begin PBXProject section */
|
548
|
+
82D169BDBB6B2B9D0BD46EDC /* Project object */ = {
|
549
|
+
isa = PBXProject;
|
550
|
+
attributes = {
|
551
|
+
LastUpgradeCheck = 0510;
|
552
|
+
};
|
553
|
+
buildConfigurationList = 8BB630FBA72835EAF24AC0F2 /* Build configuration list for PBXProject "Pods" */;
|
554
|
+
compatibilityVersion = "Xcode 3.2";
|
555
|
+
developmentRegion = English;
|
556
|
+
hasScannedForEncodings = 0;
|
557
|
+
knownRegions = (
|
558
|
+
en,
|
559
|
+
);
|
560
|
+
mainGroup = 32C1F149E2194A5FF2101D33;
|
561
|
+
productRefGroup = 8B89512C3B7EB67EC60B5BFF /* Products */;
|
562
|
+
projectDirPath = "";
|
563
|
+
projectRoot = "";
|
564
|
+
targets = (
|
565
|
+
1C353B952439AC7C54230EA4 /* Pods-TestProject */,
|
566
|
+
09276CB15253B96665979B38 /* Pods-TestProject-QueryKit */,
|
567
|
+
1265922112F8F94DE388C4C1 /* Pods-TestProjectTests */,
|
568
|
+
048A4E20006621F6BEDB7B7C /* Pods-TestProjectTests-Quick */,
|
569
|
+
);
|
570
|
+
};
|
571
|
+
/* End PBXProject section */
|
572
|
+
|
573
|
+
/* Begin PBXSourcesBuildPhase section */
|
574
|
+
50367EA0840D278DE7228216 /* Sources */ = {
|
575
|
+
isa = PBXSourcesBuildPhase;
|
576
|
+
buildActionMask = 2147483647;
|
577
|
+
files = (
|
578
|
+
EB3A507CD8A5082BAA7F2E1D /* Pods-TestProjectTests-dummy.m in Sources */,
|
579
|
+
);
|
580
|
+
runOnlyForDeploymentPostprocessing = 0;
|
581
|
+
};
|
582
|
+
5356DA5943C1AC97F5D350CF /* Sources */ = {
|
583
|
+
isa = PBXSourcesBuildPhase;
|
584
|
+
buildActionMask = 2147483647;
|
585
|
+
files = (
|
586
|
+
FB559B3BCF7E6CA6B62140D2 /* Pods-TestProject-dummy.m in Sources */,
|
587
|
+
);
|
588
|
+
runOnlyForDeploymentPostprocessing = 0;
|
589
|
+
};
|
590
|
+
88DB1FDE689115B270DD8CAC /* Sources */ = {
|
591
|
+
isa = PBXSourcesBuildPhase;
|
592
|
+
buildActionMask = 2147483647;
|
593
|
+
files = (
|
594
|
+
9423CAF6518D520B21C870A6 /* Attribute.swift in Sources */,
|
595
|
+
3A627E0BDBB41CEB397EE4FC /* Expression.swift in Sources */,
|
596
|
+
F9EC78CEC4339086760066FE /* Pods-TestProject-QueryKit-dummy.m in Sources */,
|
597
|
+
492A63DE5CD9637E0F6168B2 /* Predicate.swift in Sources */,
|
598
|
+
B556CA467C1E6DD308C641A2 /* QKAttribute.m in Sources */,
|
599
|
+
7D23003E882925BF46DE0E57 /* QKAttribute.swift in Sources */,
|
600
|
+
73E3B3E87A31CD605C38E58B /* QKQuerySet.m in Sources */,
|
601
|
+
65F7BA58C6AA4244C8565B9A /* QKQuerySet.swift in Sources */,
|
602
|
+
A1C559A094CA7E4ADB9796C5 /* QuerySet.swift in Sources */,
|
603
|
+
);
|
604
|
+
runOnlyForDeploymentPostprocessing = 0;
|
605
|
+
};
|
606
|
+
E7DFE60ABC166820BB6651CD /* Sources */ = {
|
607
|
+
isa = PBXSourcesBuildPhase;
|
608
|
+
buildActionMask = 2147483647;
|
609
|
+
files = (
|
610
|
+
9FF20438D7BB156D31FA2119 /* Callsite.swift in Sources */,
|
611
|
+
C452656DF611192D6E0B1A16 /* Closures.swift in Sources */,
|
612
|
+
65FB76806012FA425E13CD56 /* Configuration.swift in Sources */,
|
613
|
+
B3B3F6D23815BF93EFA9D977 /* DSL.swift in Sources */,
|
614
|
+
B5E8E743E1B24B86B2EF10DF /* Example.swift in Sources */,
|
615
|
+
B210861B1714FF7088636CB4 /* ExampleGroup.swift in Sources */,
|
616
|
+
CE12950BC74E8933ED23F4AE /* ExampleHooks.swift in Sources */,
|
617
|
+
8BAE2FA77976EF6C81E3599C /* ExampleMetadata.swift in Sources */,
|
618
|
+
A517A7DBDD05681DFEC5FEC8 /* Failure.swift in Sources */,
|
619
|
+
EC0C06500DBCA5EDA3B6B7B9 /* Filter.swift in Sources */,
|
620
|
+
82147DF93FE68C95F5FDD7A3 /* NSString+QCKSelectorName.m in Sources */,
|
621
|
+
55D70AD0173B620D1A6CC76C /* Pods-TestProjectTests-Quick-dummy.m in Sources */,
|
622
|
+
07CF558C4A4BFDB2F7B6F4DB /* QCKDSL.m in Sources */,
|
623
|
+
52978AE08582C25E6269D836 /* QuickConfiguration.m in Sources */,
|
624
|
+
0FEBBA49FDF12C76BFDDC992 /* QuickSpec.m in Sources */,
|
625
|
+
B6A18E58B4E85E59BD697B79 /* SuiteHooks.swift in Sources */,
|
626
|
+
B985A7E614133FB5D901F4D6 /* World+DSL.swift in Sources */,
|
627
|
+
AF3C9FCA43094308D3EF06A8 /* World.swift in Sources */,
|
628
|
+
);
|
629
|
+
runOnlyForDeploymentPostprocessing = 0;
|
630
|
+
};
|
631
|
+
/* End PBXSourcesBuildPhase section */
|
632
|
+
|
633
|
+
/* Begin PBXTargetDependency section */
|
634
|
+
57DAEA729BD7ECF75BB49366 /* PBXTargetDependency */ = {
|
635
|
+
isa = PBXTargetDependency;
|
636
|
+
name = "Pods-TestProjectTests-Quick";
|
637
|
+
target = 048A4E20006621F6BEDB7B7C /* Pods-TestProjectTests-Quick */;
|
638
|
+
targetProxy = BD5E4220053C053E30D91222 /* PBXContainerItemProxy */;
|
639
|
+
};
|
640
|
+
61B463B565EF2BA9E7D72B89 /* PBXTargetDependency */ = {
|
641
|
+
isa = PBXTargetDependency;
|
642
|
+
name = "Pods-TestProject-QueryKit";
|
643
|
+
target = 09276CB15253B96665979B38 /* Pods-TestProject-QueryKit */;
|
644
|
+
targetProxy = C809EB75638B2E9D1FC047BC /* PBXContainerItemProxy */;
|
645
|
+
};
|
646
|
+
/* End PBXTargetDependency section */
|
647
|
+
|
648
|
+
/* Begin XCBuildConfiguration section */
|
649
|
+
00D14271511A1CC012BDE774 /* Debug */ = {
|
650
|
+
isa = XCBuildConfiguration;
|
651
|
+
baseConfigurationReference = C37D4DE2BD7DE21DD5D44BC4 /* Pods-TestProjectTests-Quick-Private.xcconfig */;
|
652
|
+
buildSettings = {
|
653
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
654
|
+
CURRENT_PROJECT_VERSION = 1;
|
655
|
+
DEFINES_MODULE = YES;
|
656
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
657
|
+
DYLIB_CURRENT_VERSION = 1;
|
658
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
659
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
660
|
+
GCC_PREFIX_HEADER = "Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick-prefix.pch";
|
661
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProjectTests-Quick/Info.plist";
|
662
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
663
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
664
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
665
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick.modulemap";
|
666
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
667
|
+
PRODUCT_NAME = Quick;
|
668
|
+
SDKROOT = iphoneos;
|
669
|
+
SKIP_INSTALL = YES;
|
670
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
671
|
+
VERSIONING_SYSTEM = "apple-generic";
|
672
|
+
VERSION_INFO_PREFIX = "";
|
673
|
+
};
|
674
|
+
name = Debug;
|
675
|
+
};
|
676
|
+
23DEF800BF7647E33B9997FF /* Debug */ = {
|
677
|
+
isa = XCBuildConfiguration;
|
678
|
+
baseConfigurationReference = 2C1FE72D7450A3A172033D56 /* Pods-TestProject-QueryKit-Private.xcconfig */;
|
679
|
+
buildSettings = {
|
680
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
681
|
+
CURRENT_PROJECT_VERSION = 1;
|
682
|
+
DEFINES_MODULE = YES;
|
683
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
684
|
+
DYLIB_CURRENT_VERSION = 1;
|
685
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
686
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
687
|
+
GCC_PREFIX_HEADER = "Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit-prefix.pch";
|
688
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProject-QueryKit/Info.plist";
|
689
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
690
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
691
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
692
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit.modulemap";
|
693
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
694
|
+
PRODUCT_NAME = QueryKit;
|
695
|
+
SDKROOT = iphoneos;
|
696
|
+
SKIP_INSTALL = YES;
|
697
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
698
|
+
VERSIONING_SYSTEM = "apple-generic";
|
699
|
+
VERSION_INFO_PREFIX = "";
|
700
|
+
};
|
701
|
+
name = Debug;
|
702
|
+
};
|
703
|
+
2F3467C6AE8C3811FFD25F08 /* Release */ = {
|
704
|
+
isa = XCBuildConfiguration;
|
705
|
+
baseConfigurationReference = 2C1FE72D7450A3A172033D56 /* Pods-TestProject-QueryKit-Private.xcconfig */;
|
706
|
+
buildSettings = {
|
707
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
708
|
+
CURRENT_PROJECT_VERSION = 1;
|
709
|
+
DEFINES_MODULE = YES;
|
710
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
711
|
+
DYLIB_CURRENT_VERSION = 1;
|
712
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
713
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
714
|
+
GCC_PREFIX_HEADER = "Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit-prefix.pch";
|
715
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProject-QueryKit/Info.plist";
|
716
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
717
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
718
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
719
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProject-QueryKit/Pods-TestProject-QueryKit.modulemap";
|
720
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
721
|
+
PRODUCT_NAME = QueryKit;
|
722
|
+
SDKROOT = iphoneos;
|
723
|
+
SKIP_INSTALL = YES;
|
724
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
725
|
+
VERSIONING_SYSTEM = "apple-generic";
|
726
|
+
VERSION_INFO_PREFIX = "";
|
727
|
+
};
|
728
|
+
name = Release;
|
729
|
+
};
|
730
|
+
94D35F8466B95FF375C7CC65 /* Release */ = {
|
731
|
+
isa = XCBuildConfiguration;
|
732
|
+
baseConfigurationReference = CB9A9AF2A121235959FE0E6B /* Pods-TestProjectTests.release.xcconfig */;
|
733
|
+
buildSettings = {
|
734
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
735
|
+
CURRENT_PROJECT_VERSION = 1;
|
736
|
+
DEFINES_MODULE = YES;
|
737
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
738
|
+
DYLIB_CURRENT_VERSION = 1;
|
739
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
740
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
741
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProjectTests/Info.plist";
|
742
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
743
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
744
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
745
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.modulemap";
|
746
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
747
|
+
OTHER_LDFLAGS = "";
|
748
|
+
OTHER_LIBTOOLFLAGS = "";
|
749
|
+
PODS_ROOT = "$(SRCROOT)";
|
750
|
+
PRODUCT_NAME = Pods_TestProjectTests;
|
751
|
+
SDKROOT = iphoneos;
|
752
|
+
SKIP_INSTALL = YES;
|
753
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
754
|
+
VERSIONING_SYSTEM = "apple-generic";
|
755
|
+
VERSION_INFO_PREFIX = "";
|
756
|
+
};
|
757
|
+
name = Release;
|
758
|
+
};
|
759
|
+
9A7FDFE22A278F0406195813 /* Release */ = {
|
760
|
+
isa = XCBuildConfiguration;
|
761
|
+
baseConfigurationReference = 11B88C3BDEF0847929CF9439 /* Pods-TestProject.release.xcconfig */;
|
762
|
+
buildSettings = {
|
763
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
764
|
+
CURRENT_PROJECT_VERSION = 1;
|
765
|
+
DEFINES_MODULE = YES;
|
766
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
767
|
+
DYLIB_CURRENT_VERSION = 1;
|
768
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
769
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
770
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProject/Info.plist";
|
771
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
772
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
773
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
774
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProject/Pods-TestProject.modulemap";
|
775
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
776
|
+
OTHER_LDFLAGS = "";
|
777
|
+
OTHER_LIBTOOLFLAGS = "";
|
778
|
+
PODS_ROOT = "$(SRCROOT)";
|
779
|
+
PRODUCT_NAME = Pods_TestProject;
|
780
|
+
SDKROOT = iphoneos;
|
781
|
+
SKIP_INSTALL = YES;
|
782
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
783
|
+
VERSIONING_SYSTEM = "apple-generic";
|
784
|
+
VERSION_INFO_PREFIX = "";
|
785
|
+
};
|
786
|
+
name = Release;
|
787
|
+
};
|
788
|
+
C00C411DE21839B15A9866B6 /* Release */ = {
|
789
|
+
isa = XCBuildConfiguration;
|
790
|
+
baseConfigurationReference = C37D4DE2BD7DE21DD5D44BC4 /* Pods-TestProjectTests-Quick-Private.xcconfig */;
|
791
|
+
buildSettings = {
|
792
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
793
|
+
CURRENT_PROJECT_VERSION = 1;
|
794
|
+
DEFINES_MODULE = YES;
|
795
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
796
|
+
DYLIB_CURRENT_VERSION = 1;
|
797
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
798
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
799
|
+
GCC_PREFIX_HEADER = "Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick-prefix.pch";
|
800
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProjectTests-Quick/Info.plist";
|
801
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
802
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
803
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
804
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProjectTests-Quick/Pods-TestProjectTests-Quick.modulemap";
|
805
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
806
|
+
PRODUCT_NAME = Quick;
|
807
|
+
SDKROOT = iphoneos;
|
808
|
+
SKIP_INSTALL = YES;
|
809
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
810
|
+
VERSIONING_SYSTEM = "apple-generic";
|
811
|
+
VERSION_INFO_PREFIX = "";
|
812
|
+
};
|
813
|
+
name = Release;
|
814
|
+
};
|
815
|
+
CB4DC3328EB24C28E2DC8509 /* Release */ = {
|
816
|
+
isa = XCBuildConfiguration;
|
817
|
+
buildSettings = {
|
818
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
819
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
820
|
+
CLANG_CXX_LIBRARY = "libc++";
|
821
|
+
CLANG_ENABLE_MODULES = YES;
|
822
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
823
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
824
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
825
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
826
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
827
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
828
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
829
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
830
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
831
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
832
|
+
COPY_PHASE_STRIP = NO;
|
833
|
+
ENABLE_NS_ASSERTIONS = NO;
|
834
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
835
|
+
GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1";
|
836
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
837
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
838
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
839
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
840
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
841
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
842
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
843
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
844
|
+
VALIDATE_PRODUCT = YES;
|
845
|
+
};
|
846
|
+
name = Release;
|
847
|
+
};
|
848
|
+
E1A56DB77951EB389EF77D53 /* Debug */ = {
|
849
|
+
isa = XCBuildConfiguration;
|
850
|
+
baseConfigurationReference = 11F82B19074A030F27981314 /* Pods-TestProjectTests.debug.xcconfig */;
|
851
|
+
buildSettings = {
|
852
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
853
|
+
CURRENT_PROJECT_VERSION = 1;
|
854
|
+
DEFINES_MODULE = YES;
|
855
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
856
|
+
DYLIB_CURRENT_VERSION = 1;
|
857
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
858
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
859
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProjectTests/Info.plist";
|
860
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
861
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
862
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
863
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProjectTests/Pods-TestProjectTests.modulemap";
|
864
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
865
|
+
OTHER_LDFLAGS = "";
|
866
|
+
OTHER_LIBTOOLFLAGS = "";
|
867
|
+
PODS_ROOT = "$(SRCROOT)";
|
868
|
+
PRODUCT_NAME = Pods_TestProjectTests;
|
869
|
+
SDKROOT = iphoneos;
|
870
|
+
SKIP_INSTALL = YES;
|
871
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
872
|
+
VERSIONING_SYSTEM = "apple-generic";
|
873
|
+
VERSION_INFO_PREFIX = "";
|
874
|
+
};
|
875
|
+
name = Debug;
|
876
|
+
};
|
877
|
+
FA4CB9D277BBC751C066B8AB /* Debug */ = {
|
878
|
+
isa = XCBuildConfiguration;
|
879
|
+
baseConfigurationReference = FF2044B67B52CCA09C6C4AEB /* Pods-TestProject.debug.xcconfig */;
|
880
|
+
buildSettings = {
|
881
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
882
|
+
CURRENT_PROJECT_VERSION = 1;
|
883
|
+
DEFINES_MODULE = YES;
|
884
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
885
|
+
DYLIB_CURRENT_VERSION = 1;
|
886
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
887
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
888
|
+
INFOPLIST_FILE = "Target Support Files/Pods-TestProject/Info.plist";
|
889
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
890
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
891
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
892
|
+
MODULEMAP_FILE = "Target Support Files/Pods-TestProject/Pods-TestProject.modulemap";
|
893
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
894
|
+
OTHER_LDFLAGS = "";
|
895
|
+
OTHER_LIBTOOLFLAGS = "";
|
896
|
+
PODS_ROOT = "$(SRCROOT)";
|
897
|
+
PRODUCT_NAME = Pods_TestProject;
|
898
|
+
SDKROOT = iphoneos;
|
899
|
+
SKIP_INSTALL = YES;
|
900
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
901
|
+
VERSIONING_SYSTEM = "apple-generic";
|
902
|
+
VERSION_INFO_PREFIX = "";
|
903
|
+
};
|
904
|
+
name = Debug;
|
905
|
+
};
|
906
|
+
FA6C0546D4DA792FDAFF02C4 /* Debug */ = {
|
907
|
+
isa = XCBuildConfiguration;
|
908
|
+
buildSettings = {
|
909
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
910
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
911
|
+
CLANG_CXX_LIBRARY = "libc++";
|
912
|
+
CLANG_ENABLE_MODULES = YES;
|
913
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
914
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
915
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
916
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
917
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
918
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
919
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
920
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
921
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
922
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
923
|
+
COPY_PHASE_STRIP = YES;
|
924
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
925
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
926
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
927
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
928
|
+
"DEBUG=1",
|
929
|
+
"$(inherited)",
|
930
|
+
);
|
931
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
932
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
933
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
934
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
935
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
936
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
937
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
938
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
939
|
+
ONLY_ACTIVE_ARCH = YES;
|
940
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
941
|
+
};
|
942
|
+
name = Debug;
|
943
|
+
};
|
944
|
+
/* End XCBuildConfiguration section */
|
945
|
+
|
946
|
+
/* Begin XCConfigurationList section */
|
947
|
+
025660CF125DAC6DF5C7E6B2 /* Build configuration list for PBXNativeTarget "Pods-TestProjectTests-Quick" */ = {
|
948
|
+
isa = XCConfigurationList;
|
949
|
+
buildConfigurations = (
|
950
|
+
00D14271511A1CC012BDE774 /* Debug */,
|
951
|
+
C00C411DE21839B15A9866B6 /* Release */,
|
952
|
+
);
|
953
|
+
defaultConfigurationIsVisible = 0;
|
954
|
+
defaultConfigurationName = Release;
|
955
|
+
};
|
956
|
+
396E4D50A0925C3B6612FDF4 /* Build configuration list for PBXNativeTarget "Pods-TestProject" */ = {
|
957
|
+
isa = XCConfigurationList;
|
958
|
+
buildConfigurations = (
|
959
|
+
FA4CB9D277BBC751C066B8AB /* Debug */,
|
960
|
+
9A7FDFE22A278F0406195813 /* Release */,
|
961
|
+
);
|
962
|
+
defaultConfigurationIsVisible = 0;
|
963
|
+
defaultConfigurationName = Release;
|
964
|
+
};
|
965
|
+
703615A0EAC6682C16219CFD /* Build configuration list for PBXNativeTarget "Pods-TestProject-QueryKit" */ = {
|
966
|
+
isa = XCConfigurationList;
|
967
|
+
buildConfigurations = (
|
968
|
+
23DEF800BF7647E33B9997FF /* Debug */,
|
969
|
+
2F3467C6AE8C3811FFD25F08 /* Release */,
|
970
|
+
);
|
971
|
+
defaultConfigurationIsVisible = 0;
|
972
|
+
defaultConfigurationName = Release;
|
973
|
+
};
|
974
|
+
8980385AF082978A69D3FA28 /* Build configuration list for PBXNativeTarget "Pods-TestProjectTests" */ = {
|
975
|
+
isa = XCConfigurationList;
|
976
|
+
buildConfigurations = (
|
977
|
+
E1A56DB77951EB389EF77D53 /* Debug */,
|
978
|
+
94D35F8466B95FF375C7CC65 /* Release */,
|
979
|
+
);
|
980
|
+
defaultConfigurationIsVisible = 0;
|
981
|
+
defaultConfigurationName = Release;
|
982
|
+
};
|
983
|
+
8BB630FBA72835EAF24AC0F2 /* Build configuration list for PBXProject "Pods" */ = {
|
984
|
+
isa = XCConfigurationList;
|
985
|
+
buildConfigurations = (
|
986
|
+
FA6C0546D4DA792FDAFF02C4 /* Debug */,
|
987
|
+
CB4DC3328EB24C28E2DC8509 /* Release */,
|
988
|
+
);
|
989
|
+
defaultConfigurationIsVisible = 0;
|
990
|
+
defaultConfigurationName = Release;
|
991
|
+
};
|
992
|
+
/* End XCConfigurationList section */
|
993
|
+
};
|
994
|
+
rootObject = 82D169BDBB6B2B9D0BD46EDC /* Project object */;
|
995
|
+
}
|