diff --git a/.gitignore b/.gitignore index 601ea33..222e8ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,13 @@ -# Xcode +# Mac OS X .DS_Store + +# Xcode + +## Build generated build/ +DerivedData + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -9,13 +16,24 @@ build/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 -*.xcworkspace -!default.xcworkspace xcuserdata -profile + +## Other +*.xccheckout *.moved-aside -DerivedData -.idea/ +*.xcuserstate +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +.build/ -Pods -TransitionKit.xcodeproj/xcshareddata/xcschemes \ No newline at end of file +# Carthage +Carthage/Build diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..aa103b2 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Carthage/Checkouts/Kiwi"] + path = Carthage/Checkouts/Kiwi + url = https://github.com/kiwi-bdd/Kiwi.git diff --git a/.ruby-gemset b/.ruby-gemset deleted file mode 100644 index 9f51370..0000000 --- a/.ruby-gemset +++ /dev/null @@ -1 +0,0 @@ -TransitionKit diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index eca07e4..0000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.1.2 diff --git a/.travis.yml b/.travis.yml index 56f9f17..fabbd5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,29 @@ language: objective-c -before_install: - - gem install cocoapods -script: bundle exec rake spec +osx_image: xcode8.2 +env: + global: + - LC_CTYPE=en_US.UTF-8 + - LANG=en_US.UTF-8 + - WORKSPACE=TransitionKit.xcworkspace + - IOS_FRAMEWORK_SCHEME="TransitionKit iOS" + - MACOS_FRAMEWORK_SCHEME="TransitionKit macOS" + - secure: GJxuge6KjDfMUa12T6dhCmfDrOKt/QQy00uUHtAfNakQM7+FOJsk46c120GZDHcjtsjme0tgTV4JYEvASMtt/05qvo+GewCXYcPm9a/lfDJHpMa4liFiy8jb5RKkcBPJ5WQXspDuRtS84tm8hdAwWWPvj9Jh2wgYEAy8Id19PPN0CQQiAg7qRtmwgsSDNXxatrSkMffpZyG4z6xBY5o1P/NR4nWs/8zvyMtojPdJU10kNWoklxyfyTyUoBI+3TFd8c+oLfW+Fxf9YpcQNq7dlek0p/cvR05UqBQEfGuEOOxzpreVScCBP6pQqMtvDJmhquyGNVdjLzCwWzbK1bkeNzk4/dapLSIsmINMa+NlxfnjrbagbxOV0ZuN0QVPdixB8XVMAk0fQTAovakrzBVv6BWmG9KN8nKvz5OBYRIWnlgvdsTFxFiFncuGYhg7dDi/STtAedMLzMAbXTHErtEgXLyp3kNMUhjNF4dBjkD4JZf1lyTFEN3EufMmJOkqUZ9i8u2bc0WmxjgjXcxzGJgP9C3ZBYJ/xz7n+FuZtwats2RGjMXHGnu677yjzxl0+dHEwRcNd2jisiZqQyl2xI9/7p072QhHwpgwZWmRCPXd3iLjgv1463bPCtohsdSI8RJxFXpN0wFkk/EXGTXyoU3oQWJrM3J+3QtOqNPfJ3uaVq4= + matrix: + - DESTINATION="OS=10.0,name=iPhone 6s Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" + - DESTINATION="OS=9.0,name=iPad 2" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" + - DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" +script: +- set -o pipefail +- git submodule update --init +- xcodebuild -version + +- if [ $RUN_TESTS == "YES" ]; then travis_retry xcodebuild -workspace "$WORKSPACE" + -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO + ENABLE_TESTABILITY=YES test; else travis_retry xcodebuild -workspace "$WORKSPACE" + -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO + build; fi +- if [ $RUN_TESTS == "YES" ]; then travis_retry xcodebuild -workspace "$WORKSPACE" + -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO + ENABLE_TESTABILITY=YES test; else travis_retry xcodebuild -workspace "$WORKSPACE" + -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO + build; fi diff --git a/Cartfile.private b/Cartfile.private new file mode 100644 index 0000000..70a30a5 --- /dev/null +++ b/Cartfile.private @@ -0,0 +1 @@ +github "kiwi-bdd/Kiwi" diff --git a/Cartfile.resolved b/Cartfile.resolved new file mode 100644 index 0000000..e65fc98 --- /dev/null +++ b/Cartfile.resolved @@ -0,0 +1 @@ +github "kiwi-bdd/Kiwi" "v2.4.0" diff --git a/Carthage/Checkouts/Kiwi b/Carthage/Checkouts/Kiwi new file mode 160000 index 0000000..974f958 --- /dev/null +++ b/Carthage/Checkouts/Kiwi @@ -0,0 +1 @@ +Subproject commit 974f95851e290cd588b460a12eecd9a42c21bdc6 diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 7184a25..0000000 --- a/Gemfile +++ /dev/null @@ -1,6 +0,0 @@ -source 'http://rubygems.org' - -gem 'rake', '~> 10.4.2' -gem 'cocoapods', '~> 0.37.2' -gem 'xcpretty', '~> 0.1.10' -gem 'xctasks', '~> 0.6.0' diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 3e8b27c..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,69 +0,0 @@ -GEM - remote: http://rubygems.org/ - specs: - activesupport (4.2.1) - i18n (~> 0.7) - json (~> 1.7, >= 1.7.7) - minitest (~> 5.1) - thread_safe (~> 0.3, >= 0.3.4) - tzinfo (~> 1.1) - claide (0.8.1) - cocoapods (0.37.2) - activesupport (>= 3.2.15) - claide (~> 0.8.1) - cocoapods-core (= 0.37.2) - cocoapods-downloader (~> 0.9.0) - cocoapods-plugins (~> 0.4.2) - cocoapods-trunk (~> 0.6.1) - cocoapods-try (~> 0.4.5) - colored (~> 1.2) - escape (~> 0.0.4) - molinillo (~> 0.2.3) - nap (~> 0.8) - xcodeproj (~> 0.24.2) - cocoapods-core (0.37.2) - activesupport (>= 3.2.15) - fuzzy_match (~> 2.0.4) - nap (~> 0.8.0) - cocoapods-downloader (0.9.0) - cocoapods-plugins (0.4.2) - nap - cocoapods-trunk (0.6.1) - nap (>= 0.8) - netrc (= 0.7.8) - cocoapods-try (0.4.5) - colored (1.2) - escape (0.0.4) - fuzzy_match (2.0.4) - i18n (0.7.0) - json (1.8.3) - mini_portile (0.6.2) - minitest (5.7.0) - molinillo (0.2.3) - nap (0.8.0) - netrc (0.7.8) - nokogiri (1.6.6.2) - mini_portile (~> 0.6.0) - rake (10.4.2) - thread_safe (0.3.5) - tzinfo (1.2.2) - thread_safe (~> 0.1) - xcodeproj (0.24.2) - activesupport (>= 3) - colored (~> 1.2) - xcpretty (0.1.10) - xctasks (0.6.0) - nokogiri (~> 1.6, >= 1.6.3.1) - rake (~> 10.0, >= 10.0.0) - -PLATFORMS - ruby - -DEPENDENCIES - cocoapods (~> 0.37.2) - rake (~> 10.4.2) - xcpretty (~> 0.1.10) - xctasks (~> 0.6.0) - -BUNDLED WITH - 1.10.3 diff --git a/Info.plist b/Info.plist new file mode 100644 index 0000000..fbe1e6b --- /dev/null +++ b/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/Podfile b/Podfile deleted file mode 100644 index 3cadfac..0000000 --- a/Podfile +++ /dev/null @@ -1,17 +0,0 @@ -source 'https://github.com/CocoaPods/Specs.git' - -target :ios do - platform :ios, '5.0' - link_with 'iOS Specs' - - pod 'TransitionKit', path: '.' - pod 'Kiwi', '~> 2.3.0' -end - -target :osx do - platform :osx, '10.7' - link_with 'OS X Specs' - - pod 'TransitionKit', path: '.' - pod 'Kiwi', '~> 2.3.0' -end diff --git a/Podfile.lock b/Podfile.lock deleted file mode 100644 index a071fb7..0000000 --- a/Podfile.lock +++ /dev/null @@ -1,17 +0,0 @@ -PODS: - - Kiwi (2.3.1) - - TransitionKit (2.2.1) - -DEPENDENCIES: - - Kiwi (~> 2.3.0) - - TransitionKit (from `.`) - -EXTERNAL SOURCES: - TransitionKit: - :path: "." - -SPEC CHECKSUMS: - Kiwi: f038a6c61f7a9e4d7766bff5717aa3b3fdb75f55 - TransitionKit: 9ceccda4cd0cdc0a05ef85eb235e5a3292c3c250 - -COCOAPODS: 0.37.2 diff --git a/README.md b/README.md index 299f983..82daa9c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ TransitionKit ============= -[![Build Status](https://travis-ci.org/blakewatters/TransitionKit.png?branch=master,development)](https://travis-ci.org/blakewatters/TransitionKit) +[![Build Status](https://travis-ci.org/blakewatters/TransitionKit.png?branch=master,development)](https://travis-ci.org/blakewatters/TransitionKit) +[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) ![Pod Version](https://cocoapod-badges.herokuapp.com/v/TransitionKit/badge.png) ![Pod Platform](https://cocoapod-badges.herokuapp.com/p/TransitionKit/badge.png) diff --git a/Rakefile b/Rakefile deleted file mode 100644 index a615f3e..0000000 --- a/Rakefile +++ /dev/null @@ -1,21 +0,0 @@ -require 'rubygems' -require 'bundler' -Bundler.setup -require 'xctasks/test_task' - -XCTasks::TestTask.new(:spec) do |t| - t.workspace = 'TransitionKit.xcworkspace' - t.schemes_dir = 'Specs/Schemes' - t.runner = :xcpretty - t.actions = %w{clean test} - - t.subtask(ios: 'iOS Specs') do |s| - s.sdk = :iphonesimulator - end - - t.subtask(osx: 'OS X Specs') do |s| - s.sdk = :macosx - end -end - -task :default => 'spec' diff --git a/Specs/TransitionKitTests-Info.plist b/Specs/Info.plist similarity index 77% rename from Specs/TransitionKitTests-Info.plist rename to Specs/Info.plist index c2dc499..6c6c23c 100644 --- a/Specs/TransitionKitTests-Info.plist +++ b/Specs/Info.plist @@ -5,17 +5,17 @@ CFBundleDevelopmentRegion en CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) CFBundleIdentifier - org.blakewatters.${PRODUCT_NAME:rfc1034identifier} + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(PRODUCT_NAME) CFBundlePackageType BNDL CFBundleShortVersionString 1.0 - CFBundleSignature - ???? CFBundleVersion 1 diff --git a/Specs/TKEventSpec.m b/Specs/TKEventSpec.m index ea1e03a..e72584d 100644 --- a/Specs/TKEventSpec.m +++ b/Specs/TKEventSpec.m @@ -18,7 +18,7 @@ // limitations under the License. // -#import "Kiwi.h" +#import #import "TKEvent.h" SPEC_BEGIN(TKEventSpec) diff --git a/Specs/TKStateMachineSpec.m b/Specs/TKStateMachineSpec.m index ffce220..3e02388 100644 --- a/Specs/TKStateMachineSpec.m +++ b/Specs/TKStateMachineSpec.m @@ -18,7 +18,7 @@ // limitations under the License. // -#import "Kiwi.h" +#import #import "TransitionKit.h" @interface TKSpecPerson : NSObject diff --git a/Specs/TKStateSpec.m b/Specs/TKStateSpec.m index d7cf84d..aea2012 100644 --- a/Specs/TKStateSpec.m +++ b/Specs/TKStateSpec.m @@ -18,7 +18,7 @@ // limitations under the License. // -#import "Kiwi.h" +#import #import "TKState.h" SPEC_BEGIN(TKStateSpec) diff --git a/TransitionKit.podspec b/TransitionKit.podspec index c9fcd0e..25b02f4 100644 --- a/TransitionKit.podspec +++ b/TransitionKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'TransitionKit' - s.version = '2.2.1' + s.version = '2.2.4' s.license = 'Apache2' s.summary = 'A block-based State Machine API for Objective-C.' s.homepage = 'https://github.com/blakewatters/TransitionKit' @@ -8,6 +8,6 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/blakewatters/TransitionKit.git', :tag => s.version.to_s } s.source_files = 'Code' s.requires_arc = true - s.ios.deployment_target = '5.0' + s.ios.deployment_target = '6.0' s.osx.deployment_target = '10.7' end diff --git a/TransitionKit.xcodeproj/project.pbxproj b/TransitionKit.xcodeproj/project.pbxproj index 71cefc0..fd6732e 100644 --- a/TransitionKit.xcodeproj/project.pbxproj +++ b/TransitionKit.xcodeproj/project.pbxproj @@ -1,1174 +1,967 @@ - - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 039C53C97223B376E518B6C8 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-osx.release.xcconfig - path - Pods/Target Support Files/Pods-osx/Pods-osx.release.xcconfig - sourceTree - <group> - - 252C45CF16F681D400CF1FEA - - children - - 252C460316F6833D00CF1FEA - 252C460816F6835900CF1FEA - 252C45DA16F681D400CF1FEA - 252C45D916F681D400CF1FEA - 592F22F9056A5A6C9B079323 - - isa - PBXGroup - sourceTree - <group> - - 252C45D016F681D400CF1FEA - - attributes - - LastTestingUpgradeCheck - 0510 - LastUpgradeCheck - 0510 - - buildConfigurationList - 252C45D316F681D400CF1FEA - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - - mainGroup - 252C45CF16F681D400CF1FEA - productRefGroup - 252C45D916F681D400CF1FEA - projectDirPath - - projectReferences - - projectRoot - - targets - - 252C462B16F6849A00CF1FEA - 25AE19B41809A70E00AF5535 - - - 252C45D316F681D400CF1FEA - - buildConfigurations - - 252C45FB16F681D500CF1FEA - 252C45FC16F681D500CF1FEA - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 252C45D916F681D400CF1FEA - - children - - 252C462C16F6849A00CF1FEA - 25AE19B51809A70E00AF5535 - - isa - PBXGroup - name - Products - sourceTree - <group> - - 252C45DA16F681D400CF1FEA - - children - - 252C45DB16F681D400CF1FEA - 252C45EC16F681D500CF1FEA - 252C461716F6849A00CF1FEA - 252C461916F6849A00CF1FEA - 32A48E628DDE45B98F10DBA5 - C96E76A4064B44C8AECE57E9 - - isa - PBXGroup - name - Frameworks - sourceTree - <group> - - 252C45DB16F681D400CF1FEA - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - Foundation.framework - path - System/Library/Frameworks/Foundation.framework - sourceTree - SDKROOT - - 252C45EC16F681D500CF1FEA - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - UIKit.framework - path - Library/Frameworks/UIKit.framework - sourceTree - DEVELOPER_DIR - - 252C45FB16F681D500CF1FEA - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - COPY_PHASE_STRIP - NO - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 6.1 - ONLY_ACTIVE_ARCH - YES - SDKROOT - iphoneos - - isa - XCBuildConfiguration - name - Debug - - 252C45FC16F681D500CF1FEA - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - COPY_PHASE_STRIP - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_VARIABLE - YES - IPHONEOS_DEPLOYMENT_TARGET - 6.1 - SDKROOT - iphoneos - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 252C460316F6833D00CF1FEA - - children - - 252C460416F6833D00CF1FEA - 252C464116F6A4B500CF1FEA - 252C464216F6A4B500CF1FEA - 252C464616F6A4C200CF1FEA - 252C464716F6A4C200CF1FEA - 252C464B16F6A4DF00CF1FEA - 252C464C16F6A4DF00CF1FEA - 25B01F9A1808941D007488E1 - 25B01F9B1808941D007488E1 - 252C465C16F6A79100CF1FEA - - isa - PBXGroup - path - Code - sourceTree - <group> - - 252C460416F6833D00CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - TransitionKit-Prefix.pch - sourceTree - <group> - - 252C460816F6835900CF1FEA - - children - - 252C460916F6835900CF1FEA - 252C460B16F6835900CF1FEA - 252C465116F6A57700CF1FEA - 252C465516F6A58700CF1FEA - 252C465916F6A59500CF1FEA - - isa - PBXGroup - path - Specs - sourceTree - <group> - - 252C460916F6835900CF1FEA - - children - - 252C460A16F6835900CF1FEA - - isa - PBXVariantGroup - name - InfoPlist.strings - sourceTree - <group> - - 252C460A16F6835900CF1FEA - - isa - PBXFileReference - lastKnownFileType - text.plist.strings - name - en - path - en.lproj/InfoPlist.strings - sourceTree - <group> - - 252C460B16F6835900CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - TransitionKitTests-Info.plist - sourceTree - <group> - - 252C461716F6849A00CF1FEA - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - Cocoa.framework - path - Library/Frameworks/Cocoa.framework - sourceTree - DEVELOPER_DIR - - 252C461916F6849A00CF1FEA - - children - - 252C461A16F6849A00CF1FEA - 252C461B16F6849A00CF1FEA - 252C461C16F6849A00CF1FEA - - isa - PBXGroup - name - Other Frameworks - sourceTree - <group> - - 252C461A16F6849A00CF1FEA - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - AppKit.framework - path - Library/Frameworks/AppKit.framework - sourceTree - SDKROOT - - 252C461B16F6849A00CF1FEA - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - CoreData.framework - path - Library/Frameworks/CoreData.framework - sourceTree - SDKROOT - - 252C461C16F6849A00CF1FEA - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - Foundation.framework - path - Library/Frameworks/Foundation.framework - sourceTree - SDKROOT - - 252C462716F6849A00CF1FEA - - buildActionMask - 2147483647 - files - - 252C465316F6A57700CF1FEA - 252C465716F6A58700CF1FEA - 252C465B16F6A59500CF1FEA - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 252C462816F6849A00CF1FEA - - buildActionMask - 2147483647 - files - - 252C462E16F6849A00CF1FEA - 42AE467DF3384AE6834629CA - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 252C462916F6849A00CF1FEA - - buildActionMask - 2147483647 - files - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 252C462A16F6849A00CF1FEA - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - # Run the unit tests in this test bundle. -"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests" - - - 252C462B16F6849A00CF1FEA - - buildConfigurationList - 252C463E16F6849A00CF1FEA - buildPhases - - 252C462716F6849A00CF1FEA - 252C462816F6849A00CF1FEA - 252C462916F6849A00CF1FEA - 252C462A16F6849A00CF1FEA - AA43535990A24CE6A7A9E0A2 - - buildRules - - dependencies - - isa - PBXNativeTarget - name - OS X Specs - productName - TransitionKitFrameworkTests - productReference - 252C462C16F6849A00CF1FEA - productType - com.apple.product-type.bundle.unit-test - - 252C462C16F6849A00CF1FEA - - explicitFileType - wrapper.cfbundle - includeInIndex - 0 - isa - PBXFileReference - path - OS X Specs.xctest - sourceTree - BUILT_PRODUCTS_DIR - - 252C462E16F6849A00CF1FEA - - fileRef - 252C461716F6849A00CF1FEA - isa - PBXBuildFile - - 252C463E16F6849A00CF1FEA - - buildConfigurations - - 252C463F16F6849A00CF1FEA - 252C464016F6849A00CF1FEA - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 252C463F16F6849A00CF1FEA - - baseConfigurationReference - EDCE38A01AB58323C1616481 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - GCC_ENABLE_OBJC_EXCEPTIONS - YES - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Code/TransitionKit-Prefix.pch - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - INFOPLIST_FILE - Specs/TransitionKitTests-Info.plist - MACOSX_DEPLOYMENT_TARGET - 10.8 - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Debug - - 252C464016F6849A00CF1FEA - - baseConfigurationReference - 039C53C97223B376E518B6C8 - buildSettings - - COMBINE_HIDPI_IMAGES - YES - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - GCC_ENABLE_OBJC_EXCEPTIONS - YES - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Code/TransitionKit-Prefix.pch - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - INFOPLIST_FILE - Specs/TransitionKitTests-Info.plist - MACOSX_DEPLOYMENT_TARGET - 10.8 - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - macosx - - isa - XCBuildConfiguration - name - Release - - 252C464116F6A4B500CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - TKStateMachine.h - sourceTree - <group> - - 252C464216F6A4B500CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKStateMachine.m - sourceTree - <group> - - 252C464616F6A4C200CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - TKEvent.h - sourceTree - <group> - - 252C464716F6A4C200CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKEvent.m - sourceTree - <group> - - 252C464B16F6A4DF00CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - TKState.h - sourceTree - <group> - - 252C464C16F6A4DF00CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKState.m - sourceTree - <group> - - 252C465116F6A57700CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKStateMachineSpec.m - sourceTree - <group> - - 252C465316F6A57700CF1FEA - - fileRef - 252C465116F6A57700CF1FEA - isa - PBXBuildFile - - 252C465516F6A58700CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKEventSpec.m - sourceTree - <group> - - 252C465716F6A58700CF1FEA - - fileRef - 252C465516F6A58700CF1FEA - isa - PBXBuildFile - - 252C465916F6A59500CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKStateSpec.m - sourceTree - <group> - - 252C465B16F6A59500CF1FEA - - fileRef - 252C465916F6A59500CF1FEA - isa - PBXBuildFile - - 252C465C16F6A79100CF1FEA - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - TransitionKit.h - sourceTree - <group> - - 25AE19B11809A70E00AF5535 - - buildActionMask - 2147483647 - files - - 25AE19C51809A72400AF5535 - 25AE19C61809A72400AF5535 - 25AE19C71809A72400AF5535 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 25AE19B21809A70E00AF5535 - - buildActionMask - 2147483647 - files - - 25AE19B81809A70E00AF5535 - 25AE19B71809A70E00AF5535 - 2F4EC36CAD4D4CB08D744BB4 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 25AE19B31809A70E00AF5535 - - buildActionMask - 2147483647 - files - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 25AE19B41809A70E00AF5535 - - buildConfigurationList - 25AE19C21809A70E00AF5535 - buildPhases - - FB4F6E92C45C44DF8B42F3A3 - 25AE19B11809A70E00AF5535 - 25AE19B21809A70E00AF5535 - 25AE19B31809A70E00AF5535 - 8E44984BB1724F918488E8F7 - - buildRules - - dependencies - - isa - PBXNativeTarget - name - iOS Specs - productName - iOS Specs - productReference - 25AE19B51809A70E00AF5535 - productType - com.apple.product-type.bundle.unit-test - - 25AE19B51809A70E00AF5535 - - explicitFileType - wrapper.cfbundle - includeInIndex - 0 - isa - PBXFileReference - path - iOS Specs.xctest - sourceTree - BUILT_PRODUCTS_DIR - - 25AE19B71809A70E00AF5535 - - fileRef - 252C45DB16F681D400CF1FEA - isa - PBXBuildFile - - 25AE19B81809A70E00AF5535 - - fileRef - 252C45EC16F681D500CF1FEA - isa - PBXBuildFile - - 25AE19C21809A70E00AF5535 - - buildConfigurations - - 25AE19C31809A70E00AF5535 - 25AE19C41809A70E00AF5535 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 25AE19C31809A70E00AF5535 - - baseConfigurationReference - AD73E569A343DBC89D42B79D - buildSettings - - CLANG_ENABLE_MODULES - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - FRAMEWORK_SEARCH_PATHS - - $(SDKROOT)/Developer/Library/Frameworks - $(inherited) - $(DEVELOPER_FRAMEWORKS_DIR) - - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Code/TransitionKit-Prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNUSED_FUNCTION - YES - INFOPLIST_FILE - Specs/TransitionKitTests-Info.plist - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - PRODUCT_NAME - $(TARGET_NAME) - - isa - XCBuildConfiguration - name - Debug - - 25AE19C41809A70E00AF5535 - - baseConfigurationReference - F7EF53C22C2E393B467BE847 - buildSettings - - CLANG_ENABLE_MODULES - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - ENABLE_NS_ASSERTIONS - NO - FRAMEWORK_SEARCH_PATHS - - $(SDKROOT)/Developer/Library/Frameworks - $(inherited) - $(DEVELOPER_FRAMEWORKS_DIR) - - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Code/TransitionKit-Prefix.pch - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNUSED_FUNCTION - YES - INFOPLIST_FILE - Specs/TransitionKitTests-Info.plist - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - PRODUCT_NAME - $(TARGET_NAME) - - isa - XCBuildConfiguration - name - Release - - 25AE19C51809A72400AF5535 - - fileRef - 252C465116F6A57700CF1FEA - isa - PBXBuildFile - - 25AE19C61809A72400AF5535 - - fileRef - 252C465516F6A58700CF1FEA - isa - PBXBuildFile - - 25AE19C71809A72400AF5535 - - fileRef - 252C465916F6A59500CF1FEA - isa - PBXBuildFile - - 25B01F9A1808941D007488E1 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - TKTransition.h - sourceTree - <group> - - 25B01F9B1808941D007488E1 - - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - TKTransition.m - sourceTree - <group> - - 2F4EC36CAD4D4CB08D744BB4 - - fileRef - 32A48E628DDE45B98F10DBA5 - isa - PBXBuildFile - - 32A48E628DDE45B98F10DBA5 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-ios.a - sourceTree - BUILT_PRODUCTS_DIR - - 42AE467DF3384AE6834629CA - - fileRef - C96E76A4064B44C8AECE57E9 - isa - PBXBuildFile - - 592F22F9056A5A6C9B079323 - - children - - AD73E569A343DBC89D42B79D - F7EF53C22C2E393B467BE847 - EDCE38A01AB58323C1616481 - 039C53C97223B376E518B6C8 - - isa - PBXGroup - name - Pods - sourceTree - <group> - - 8E44984BB1724F918488E8F7 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Copy Pods Resources - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-ios/Pods-ios-resources.sh" - - showEnvVarsInLog - 0 - - AA43535990A24CE6A7A9E0A2 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Copy Pods Resources - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods-osx/Pods-osx-resources.sh" - - - AD73E569A343DBC89D42B79D - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-ios.debug.xcconfig - path - Pods/Target Support Files/Pods-ios/Pods-ios.debug.xcconfig - sourceTree - <group> - - C96E76A4064B44C8AECE57E9 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-osx.a - sourceTree - BUILT_PRODUCTS_DIR - - EDCE38A01AB58323C1616481 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-osx.debug.xcconfig - path - Pods/Target Support Files/Pods-osx/Pods-osx.debug.xcconfig - sourceTree - <group> - - F7EF53C22C2E393B467BE847 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods-ios.release.xcconfig - path - Pods/Target Support Files/Pods-ios/Pods-ios.release.xcconfig - sourceTree - <group> - - FB4F6E92C45C44DF8B42F3A3 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Check Pods Manifest.lock - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null -if [[ $? != 0 ]] ; then - cat << EOM -error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. -EOM - exit 1 -fi - - showEnvVarsInLog - 0 - - - rootObject - 252C45D016F681D400CF1FEA - - +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + FE0936171E80374A0092BF67 /* TransitionKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE0935F91E8037330092BF67 /* TransitionKit.framework */; }; + FE0936261E8037520092BF67 /* TransitionKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE0936061E80373D0092BF67 /* TransitionKit.framework */; }; + FE09362E1E8037E00092BF67 /* TKStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C464116F6A4B500CF1FEA /* TKStateMachine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE09362F1E8037E00092BF67 /* TKStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C464116F6A4B500CF1FEA /* TKStateMachine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936301E8037E90092BF67 /* TKEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C464616F6A4C200CF1FEA /* TKEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936311E8037E90092BF67 /* TKState.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C464B16F6A4DF00CF1FEA /* TKState.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936321E8037E90092BF67 /* TKTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B01F9A1808941D007488E1 /* TKTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936331E8037E90092BF67 /* TransitionKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C465C16F6A79100CF1FEA /* TransitionKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936341E8037E90092BF67 /* TKEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C464616F6A4C200CF1FEA /* TKEvent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936351E8037E90092BF67 /* TKState.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C464B16F6A4DF00CF1FEA /* TKState.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936361E8037E90092BF67 /* TKTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B01F9A1808941D007488E1 /* TKTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936371E8037E90092BF67 /* TransitionKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 252C465C16F6A79100CF1FEA /* TransitionKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0936381E8037F20092BF67 /* TKStateMachine.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C464216F6A4B500CF1FEA /* TKStateMachine.m */; }; + FE0936391E8037F20092BF67 /* TKEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C464716F6A4C200CF1FEA /* TKEvent.m */; }; + FE09363A1E8037F20092BF67 /* TKState.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C464C16F6A4DF00CF1FEA /* TKState.m */; }; + FE09363B1E8037F20092BF67 /* TKTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B01F9B1808941D007488E1 /* TKTransition.m */; }; + FE0936481E8037F50092BF67 /* TKStateMachine.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C464216F6A4B500CF1FEA /* TKStateMachine.m */; }; + FE0936491E8037F50092BF67 /* TKEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C464716F6A4C200CF1FEA /* TKEvent.m */; }; + FE09364A1E8037F50092BF67 /* TKState.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C464C16F6A4DF00CF1FEA /* TKState.m */; }; + FE09364B1E8037F50092BF67 /* TKTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B01F9B1808941D007488E1 /* TKTransition.m */; }; + FE09364C1E8038000092BF67 /* TKStateMachineSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C465116F6A57700CF1FEA /* TKStateMachineSpec.m */; }; + FE09364D1E8038000092BF67 /* TKEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C465516F6A58700CF1FEA /* TKEventSpec.m */; }; + FE09364E1E8038000092BF67 /* TKStateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C465916F6A59500CF1FEA /* TKStateSpec.m */; }; + FE09364F1E8038010092BF67 /* TKStateMachineSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C465116F6A57700CF1FEA /* TKStateMachineSpec.m */; }; + FE0936501E8038010092BF67 /* TKEventSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C465516F6A58700CF1FEA /* TKEventSpec.m */; }; + FE0936511E8038010092BF67 /* TKStateSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C465916F6A59500CF1FEA /* TKStateSpec.m */; }; + FE22D95A1F44597600FBB6F6 /* Kiwi.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE22D94E1F44593E00FBB6F6 /* Kiwi.framework */; }; + FE22D95D1F4459D700FBB6F6 /* Kiwi.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE22D9521F44593E00FBB6F6 /* Kiwi.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + FE0936181E80374A0092BF67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 252C45D016F681D400CF1FEA /* Project object */; + proxyType = 1; + remoteGlobalIDString = FE0935F81E8037330092BF67; + remoteInfo = "TransitionKit iOS"; + }; + FE0936271E8037520092BF67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 252C45D016F681D400CF1FEA /* Project object */; + proxyType = 1; + remoteGlobalIDString = FE0936051E80373D0092BF67; + remoteInfo = "TransitionKit macOS"; + }; + FE22D94D1F44593E00FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = CE87C4231AF194E900310C07; + remoteInfo = "Kiwi-iOS"; + }; + FE22D94F1F44593E00FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = CE87C42D1AF194EA00310C07; + remoteInfo = "KiwiTests-iOS"; + }; + FE22D9511F44593E00FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 4AE02FBD1AEB45EB00556381; + remoteInfo = "Kiwi-OSX"; + }; + FE22D9531F44593E00FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 4AE02FC71AEB45EB00556381; + remoteInfo = "KiwiTests-OSX"; + }; + FE22D9581F44597300FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = CE87C4221AF194E900310C07; + remoteInfo = "Kiwi-iOS"; + }; + FE22D95B1F4459D200FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 4AE02FBC1AEB45EB00556381; + remoteInfo = "Kiwi-OSX"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 252C45DB16F681D400CF1FEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 252C45EC16F681D500CF1FEA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + 252C460416F6833D00CF1FEA /* TransitionKit-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "TransitionKit-Prefix.pch"; sourceTree = ""; }; + 252C460A16F6835900CF1FEA /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 252C461716F6849A00CF1FEA /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; + 252C461A16F6849A00CF1FEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; + 252C461B16F6849A00CF1FEA /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; + 252C461C16F6849A00CF1FEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 252C464116F6A4B500CF1FEA /* TKStateMachine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKStateMachine.h; sourceTree = ""; }; + 252C464216F6A4B500CF1FEA /* TKStateMachine.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKStateMachine.m; sourceTree = ""; }; + 252C464616F6A4C200CF1FEA /* TKEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKEvent.h; sourceTree = ""; }; + 252C464716F6A4C200CF1FEA /* TKEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKEvent.m; sourceTree = ""; }; + 252C464B16F6A4DF00CF1FEA /* TKState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TKState.h; sourceTree = ""; }; + 252C464C16F6A4DF00CF1FEA /* TKState.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKState.m; sourceTree = ""; }; + 252C465116F6A57700CF1FEA /* TKStateMachineSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKStateMachineSpec.m; sourceTree = ""; }; + 252C465516F6A58700CF1FEA /* TKEventSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKEventSpec.m; sourceTree = ""; }; + 252C465916F6A59500CF1FEA /* TKStateSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TKStateSpec.m; sourceTree = ""; }; + 252C465C16F6A79100CF1FEA /* TransitionKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TransitionKit.h; sourceTree = ""; }; + 25B01F9A1808941D007488E1 /* TKTransition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TKTransition.h; sourceTree = ""; }; + 25B01F9B1808941D007488E1 /* TKTransition.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TKTransition.m; sourceTree = ""; }; + FE0935F91E8037330092BF67 /* TransitionKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TransitionKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0936061E80373D0092BF67 /* TransitionKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TransitionKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0936121E80374A0092BF67 /* TransitionKit.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TransitionKit.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0936211E8037520092BF67 /* TransitionKit.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TransitionKit.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + FE09362C1E8037A70092BF67 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FE0936531E8038120092BF67 /* TransitionKit.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = TransitionKit.podspec; sourceTree = ""; }; + FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Kiwi.xcodeproj; path = Carthage/Checkouts/Kiwi/Kiwi.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + FE0935F51E8037330092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0936021E80373D0092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE09360F1E80374A0092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FE22D95A1F44597600FBB6F6 /* Kiwi.framework in Frameworks */, + FE0936171E80374A0092BF67 /* TransitionKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE09361E1E8037520092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FE22D95D1F4459D700FBB6F6 /* Kiwi.framework in Frameworks */, + FE0936261E8037520092BF67 /* TransitionKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 252C45CF16F681D400CF1FEA = { + isa = PBXGroup; + children = ( + FE0936531E8038120092BF67 /* TransitionKit.podspec */, + 252C460316F6833D00CF1FEA /* Code */, + 252C460816F6835900CF1FEA /* Specs */, + 252C45DA16F681D400CF1FEA /* Frameworks */, + 252C45D916F681D400CF1FEA /* Products */, + FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */, + ); + sourceTree = ""; + }; + 252C45D916F681D400CF1FEA /* Products */ = { + isa = PBXGroup; + children = ( + FE0935F91E8037330092BF67 /* TransitionKit.framework */, + FE0936061E80373D0092BF67 /* TransitionKit.framework */, + FE0936121E80374A0092BF67 /* TransitionKit.xctest */, + FE0936211E8037520092BF67 /* TransitionKit.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 252C45DA16F681D400CF1FEA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 252C45DB16F681D400CF1FEA /* Foundation.framework */, + 252C45EC16F681D500CF1FEA /* UIKit.framework */, + 252C461716F6849A00CF1FEA /* Cocoa.framework */, + 252C461916F6849A00CF1FEA /* Other Frameworks */, + ); + name = Frameworks; + sourceTree = ""; + }; + 252C460316F6833D00CF1FEA /* Code */ = { + isa = PBXGroup; + children = ( + 252C460416F6833D00CF1FEA /* TransitionKit-Prefix.pch */, + 252C464116F6A4B500CF1FEA /* TKStateMachine.h */, + 252C464216F6A4B500CF1FEA /* TKStateMachine.m */, + 252C464616F6A4C200CF1FEA /* TKEvent.h */, + 252C464716F6A4C200CF1FEA /* TKEvent.m */, + 252C464B16F6A4DF00CF1FEA /* TKState.h */, + 252C464C16F6A4DF00CF1FEA /* TKState.m */, + 25B01F9A1808941D007488E1 /* TKTransition.h */, + 25B01F9B1808941D007488E1 /* TKTransition.m */, + 252C465C16F6A79100CF1FEA /* TransitionKit.h */, + ); + path = Code; + sourceTree = ""; + }; + 252C460816F6835900CF1FEA /* Specs */ = { + isa = PBXGroup; + children = ( + FE09362C1E8037A70092BF67 /* Info.plist */, + 252C460916F6835900CF1FEA /* InfoPlist.strings */, + 252C465116F6A57700CF1FEA /* TKStateMachineSpec.m */, + 252C465516F6A58700CF1FEA /* TKEventSpec.m */, + 252C465916F6A59500CF1FEA /* TKStateSpec.m */, + ); + path = Specs; + sourceTree = ""; + }; + 252C461916F6849A00CF1FEA /* Other Frameworks */ = { + isa = PBXGroup; + children = ( + 252C461A16F6849A00CF1FEA /* AppKit.framework */, + 252C461B16F6849A00CF1FEA /* CoreData.framework */, + 252C461C16F6849A00CF1FEA /* Foundation.framework */, + ); + name = "Other Frameworks"; + sourceTree = ""; + }; + FE22D9471F44593E00FBB6F6 /* Products */ = { + isa = PBXGroup; + children = ( + FE22D94E1F44593E00FBB6F6 /* Kiwi.framework */, + FE22D9501F44593E00FBB6F6 /* KiwiTests.xctest */, + FE22D9521F44593E00FBB6F6 /* Kiwi.framework */, + FE22D9541F44593E00FBB6F6 /* KiwiTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + FE0935F61E8037330092BF67 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0936331E8037E90092BF67 /* TransitionKit.h in Headers */, + FE0936301E8037E90092BF67 /* TKEvent.h in Headers */, + FE0936311E8037E90092BF67 /* TKState.h in Headers */, + FE0936321E8037E90092BF67 /* TKTransition.h in Headers */, + FE09362E1E8037E00092BF67 /* TKStateMachine.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0936031E80373D0092BF67 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0936371E8037E90092BF67 /* TransitionKit.h in Headers */, + FE0936341E8037E90092BF67 /* TKEvent.h in Headers */, + FE0936351E8037E90092BF67 /* TKState.h in Headers */, + FE0936361E8037E90092BF67 /* TKTransition.h in Headers */, + FE09362F1E8037E00092BF67 /* TKStateMachine.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + FE0935F81E8037330092BF67 /* TransitionKit iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE0936001E8037330092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit iOS" */; + buildPhases = ( + FE0935F41E8037330092BF67 /* Sources */, + FE0935F51E8037330092BF67 /* Frameworks */, + FE0935F61E8037330092BF67 /* Headers */, + FE0935F71E8037330092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "TransitionKit iOS"; + productName = "TransitionKit iOS"; + productReference = FE0935F91E8037330092BF67 /* TransitionKit.framework */; + productType = "com.apple.product-type.framework"; + }; + FE0936051E80373D0092BF67 /* TransitionKit macOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE09360B1E80373D0092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit macOS" */; + buildPhases = ( + FE0936011E80373D0092BF67 /* Sources */, + FE0936021E80373D0092BF67 /* Frameworks */, + FE0936031E80373D0092BF67 /* Headers */, + FE0936041E80373D0092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "TransitionKit macOS"; + productName = "TransitionKit macOS"; + productReference = FE0936061E80373D0092BF67 /* TransitionKit.framework */; + productType = "com.apple.product-type.framework"; + }; + FE0936111E80374A0092BF67 /* TransitionKit iOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE09361A1E80374A0092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit iOS Tests" */; + buildPhases = ( + FE09360E1E80374A0092BF67 /* Sources */, + FE09360F1E80374A0092BF67 /* Frameworks */, + FE0936101E80374A0092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FE22D9591F44597300FBB6F6 /* PBXTargetDependency */, + FE0936191E80374A0092BF67 /* PBXTargetDependency */, + ); + name = "TransitionKit iOS Tests"; + productName = "TransitionKit iOS Tests"; + productReference = FE0936121E80374A0092BF67 /* TransitionKit.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + FE0936201E8037520092BF67 /* TransitionKit macOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE0936291E8037520092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit macOS Tests" */; + buildPhases = ( + FE09361D1E8037520092BF67 /* Sources */, + FE09361E1E8037520092BF67 /* Frameworks */, + FE09361F1E8037520092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FE22D95C1F4459D200FBB6F6 /* PBXTargetDependency */, + FE0936281E8037520092BF67 /* PBXTargetDependency */, + ); + name = "TransitionKit macOS Tests"; + productName = "TransitionKit macOS Tests"; + productReference = FE0936211E8037520092BF67 /* TransitionKit.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 252C45D016F681D400CF1FEA /* Project object */ = { + isa = PBXProject; + attributes = { + LastTestingUpgradeCheck = 0510; + LastUpgradeCheck = 0830; + TargetAttributes = { + FE0935F81E8037330092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + FE0936051E80373D0092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + FE0936111E80374A0092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + FE0936201E8037520092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = 252C45D316F681D400CF1FEA /* Build configuration list for PBXProject "TransitionKit" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 252C45CF16F681D400CF1FEA; + productRefGroup = 252C45D916F681D400CF1FEA /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = FE22D9471F44593E00FBB6F6 /* Products */; + ProjectRef = FE22D9461F44593E00FBB6F6 /* Kiwi.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + FE0935F81E8037330092BF67 /* TransitionKit iOS */, + FE0936111E80374A0092BF67 /* TransitionKit iOS Tests */, + FE0936051E80373D0092BF67 /* TransitionKit macOS */, + FE0936201E8037520092BF67 /* TransitionKit macOS Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + FE22D94E1F44593E00FBB6F6 /* Kiwi.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = Kiwi.framework; + remoteRef = FE22D94D1F44593E00FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9501F44593E00FBB6F6 /* KiwiTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = KiwiTests.xctest; + remoteRef = FE22D94F1F44593E00FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9521F44593E00FBB6F6 /* Kiwi.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = Kiwi.framework; + remoteRef = FE22D9511F44593E00FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9541F44593E00FBB6F6 /* KiwiTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = KiwiTests.xctest; + remoteRef = FE22D9531F44593E00FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + FE0935F71E8037330092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0936041E80373D0092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0936101E80374A0092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE09361F1E8037520092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + FE0935F41E8037330092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0936381E8037F20092BF67 /* TKStateMachine.m in Sources */, + FE09363A1E8037F20092BF67 /* TKState.m in Sources */, + FE0936391E8037F20092BF67 /* TKEvent.m in Sources */, + FE09363B1E8037F20092BF67 /* TKTransition.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0936011E80373D0092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0936481E8037F50092BF67 /* TKStateMachine.m in Sources */, + FE09364A1E8037F50092BF67 /* TKState.m in Sources */, + FE0936491E8037F50092BF67 /* TKEvent.m in Sources */, + FE09364B1E8037F50092BF67 /* TKTransition.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE09360E1E80374A0092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE09364D1E8038000092BF67 /* TKEventSpec.m in Sources */, + FE09364C1E8038000092BF67 /* TKStateMachineSpec.m in Sources */, + FE09364E1E8038000092BF67 /* TKStateSpec.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE09361D1E8037520092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0936501E8038010092BF67 /* TKEventSpec.m in Sources */, + FE09364F1E8038010092BF67 /* TKStateMachineSpec.m in Sources */, + FE0936511E8038010092BF67 /* TKStateSpec.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + FE0936191E80374A0092BF67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = FE0935F81E8037330092BF67 /* TransitionKit iOS */; + targetProxy = FE0936181E80374A0092BF67 /* PBXContainerItemProxy */; + }; + FE0936281E8037520092BF67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = FE0936051E80373D0092BF67 /* TransitionKit macOS */; + targetProxy = FE0936271E8037520092BF67 /* PBXContainerItemProxy */; + }; + FE22D9591F44597300FBB6F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Kiwi-iOS"; + targetProxy = FE22D9581F44597300FBB6F6 /* PBXContainerItemProxy */; + }; + FE22D95C1F4459D200FBB6F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Kiwi-OSX"; + targetProxy = FE22D95B1F4459D200FBB6F6 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 252C460916F6835900CF1FEA /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 252C460A16F6835900CF1FEA /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 252C45FB16F681D500CF1FEA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = TransitionKit; + SDKROOT = iphoneos; + }; + name = Debug; + }; + 252C45FC16F681D500CF1FEA /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = TransitionKit; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + FE0935FE1E8037330092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-iOS"; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + FE0935FF1E8037330092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-iOS"; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FE09360C1E80373D0092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.7; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-macOS"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + FE09360D1E80373D0092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + FRAMEWORK_VERSION = A; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.7; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-macOS"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FE09361B1E80374A0092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Specs/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 10.2; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-iOS-Tests"; + }; + name = Debug; + }; + FE09361C1E80374A0092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Specs/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 10.2; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-iOS-Tests"; + }; + name = Release; + }; + FE09362A1E8037520092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Specs/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.12; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-macOS-Tests"; + SDKROOT = macosx; + }; + name = Debug; + }; + FE09362B1E8037520092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ENABLE_MODULES = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + INFOPLIST_FILE = Specs/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.12; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_BUNDLE_IDENTIFIER = "org.blakewatters.TransitionKit-macOS-Tests"; + SDKROOT = macosx; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 252C45D316F681D400CF1FEA /* Build configuration list for PBXProject "TransitionKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 252C45FB16F681D500CF1FEA /* Debug */, + 252C45FC16F681D500CF1FEA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE0936001E8037330092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE0935FE1E8037330092BF67 /* Debug */, + FE0935FF1E8037330092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE09360B1E80373D0092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit macOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE09360C1E80373D0092BF67 /* Debug */, + FE09360D1E80373D0092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE09361A1E80374A0092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit iOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE09361B1E80374A0092BF67 /* Debug */, + FE09361C1E80374A0092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE0936291E8037520092BF67 /* Build configuration list for PBXNativeTarget "TransitionKit macOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE09362A1E8037520092BF67 /* Debug */, + FE09362B1E8037520092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 252C45D016F681D400CF1FEA /* Project object */; +} diff --git a/TransitionKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TransitionKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/TransitionKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TransitionKit.xcodeproj/xcshareddata/xcschemes/TransitionKit iOS.xcscheme b/TransitionKit.xcodeproj/xcshareddata/xcschemes/TransitionKit iOS.xcscheme new file mode 100644 index 0000000..fb7911f --- /dev/null +++ b/TransitionKit.xcodeproj/xcshareddata/xcschemes/TransitionKit iOS.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TransitionKit.xcodeproj/xcshareddata/xcschemes/TransitionKit macOS.xcscheme b/TransitionKit.xcodeproj/xcshareddata/xcschemes/TransitionKit macOS.xcscheme new file mode 100644 index 0000000..8a80928 --- /dev/null +++ b/TransitionKit.xcodeproj/xcshareddata/xcschemes/TransitionKit macOS.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TransitionKit.xcworkspace/contents.xcworkspacedata b/TransitionKit.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..b60fba3 --- /dev/null +++ b/TransitionKit.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/TransitionKit.xcworkspace/xcshareddata/TransitionKit.xcscmblueprint b/TransitionKit.xcworkspace/xcshareddata/TransitionKit.xcscmblueprint new file mode 100644 index 0000000..027473c --- /dev/null +++ b/TransitionKit.xcworkspace/xcshareddata/TransitionKit.xcscmblueprint @@ -0,0 +1,30 @@ +{ + "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "47A63E07BF2C4AE0426F985EBA351C687092A209", + "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { + + }, + "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { + "4FD7C20106F5BD91089CFF7BC197AC2E448D173B" : 9223372036854775807, + "47A63E07BF2C4AE0426F985EBA351C687092A209" : 9223372036854775807 + }, + "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "101D6D42-F2C2-4F98-97DE-0A0FE3ADB4F8", + "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { + "4FD7C20106F5BD91089CFF7BC197AC2E448D173B" : "TransitionKit\/Carthage\/Checkouts\/Kiwi\/", + "47A63E07BF2C4AE0426F985EBA351C687092A209" : "TransitionKit\/" + }, + "DVTSourceControlWorkspaceBlueprintNameKey" : "TransitionKit", + "DVTSourceControlWorkspaceBlueprintVersion" : 204, + "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "TransitionKit.xcworkspace", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ + { + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/arturgrigor\/TransitionKit.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "47A63E07BF2C4AE0426F985EBA351C687092A209" + }, + { + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/kiwi-bdd\/Kiwi.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "4FD7C20106F5BD91089CFF7BC197AC2E448D173B" + } + ] +} \ No newline at end of file