From 2fbebdff64670132c6ab6c2abe8f2fd92fc2eb58 Mon Sep 17 00:00:00 2001 From: Omar Albeik Date: Mon, 17 Jul 2017 23:28:22 +0300 Subject: [PATCH] Added podspec --- .swift-version | 1 + MessageKit.podspec | 17 + MessageKit.xcodeproj/project.pbxproj | 119 ++++ .../contents.xcworkspacedata | 10 + Podfile | 15 + Podfile.lock | 3 + Pods/Manifest.lock | 3 + Pods/Pods.xcodeproj/project.pbxproj | 515 ++++++++++++++++++ .../xcschemes/Pods-MessageKit.xcscheme | 60 ++ .../xcschemes/Pods-MessageKitTests.xcscheme | 60 ++ .../xcschemes/xcschememanagement.plist | 21 + .../Pods-MessageKit/Info.plist | 26 + .../Pods-MessageKit-acknowledgements.markdown | 3 + .../Pods-MessageKit-acknowledgements.plist | 29 + .../Pods-MessageKit/Pods-MessageKit-dummy.m | 5 + .../Pods-MessageKit-resources.sh | 102 ++++ .../Pods-MessageKit-umbrella.h | 16 + .../Pods-MessageKit.debug.xcconfig | 6 + .../Pods-MessageKit/Pods-MessageKit.modulemap | 6 + .../Pods-MessageKit.release.xcconfig | 6 + .../Pods-MessageKitTests/Info.plist | 26 + ...-MessageKitTests-acknowledgements.markdown | 3 + ...ods-MessageKitTests-acknowledgements.plist | 29 + .../Pods-MessageKitTests-dummy.m | 5 + .../Pods-MessageKitTests-frameworks.sh | 92 ++++ .../Pods-MessageKitTests-resources.sh | 102 ++++ .../Pods-MessageKitTests-umbrella.h | 16 + .../Pods-MessageKitTests.debug.xcconfig | 6 + .../Pods-MessageKitTests.modulemap | 6 + .../Pods-MessageKitTests.release.xcconfig | 6 + 30 files changed, 1314 insertions(+) create mode 100644 .swift-version create mode 100644 MessageKit.podspec create mode 100644 MessageKit.xcworkspace/contents.xcworkspacedata create mode 100644 Podfile create mode 100644 Podfile.lock create mode 100644 Pods/Manifest.lock create mode 100644 Pods/Pods.xcodeproj/project.pbxproj create mode 100644 Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKit.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKitTests.xcscheme create mode 100644 Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 Pods/Target Support Files/Pods-MessageKit/Info.plist create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.markdown create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.plist create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-dummy.m create mode 100755 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-resources.sh create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-umbrella.h create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.debug.xcconfig create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.modulemap create mode 100644 Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.release.xcconfig create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Info.plist create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.markdown create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.plist create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-dummy.m create mode 100755 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-frameworks.sh create mode 100755 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-resources.sh create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-umbrella.h create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.debug.xcconfig create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.modulemap create mode 100644 Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.release.xcconfig diff --git a/.swift-version b/.swift-version new file mode 100644 index 00000000..9f55b2cc --- /dev/null +++ b/.swift-version @@ -0,0 +1 @@ +3.0 diff --git a/MessageKit.podspec b/MessageKit.podspec new file mode 100644 index 00000000..659e7067 --- /dev/null +++ b/MessageKit.podspec @@ -0,0 +1,17 @@ +Pod::Spec.new do |s| + + s.name = "MessageKit" + s.version = "1.0" + s.summary = "Super easy to use client for Hacker News API" + s.license = { :type => "MIT", :file => "LICENSE" } + s.homepage = "https://github.com/SD10/MessageKit" + s.author = { "Steven Deutsch" => "stevensdeutsch@yahoo.com" } + s.social_media_url = "https://twitter.com/_SD10_" + s.platform = :ios, "9.0" + s.requires_arc = "true" + s.source = { git: "https://github.com/SD10/MessageKit.git", tag: "#{s.version}" } + s.source_files = "MessageKit/**/*.*" + s.pod_target_xcconfig = { + "SWIFT_VERSION" => "3.0", + } +end diff --git a/MessageKit.xcodeproj/project.pbxproj b/MessageKit.xcodeproj/project.pbxproj index a106bd24..549a6adb 100644 --- a/MessageKit.xcodeproj/project.pbxproj +++ b/MessageKit.xcodeproj/project.pbxproj @@ -10,6 +10,8 @@ B011FD661F1D48E700CE0D6A /* MessageKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B011FD5C1F1D48E600CE0D6A /* MessageKit.framework */; }; B011FD6B1F1D48E700CE0D6A /* MessageKitTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B011FD6A1F1D48E700CE0D6A /* MessageKitTests.swift */; }; B011FD6D1F1D48E700CE0D6A /* MessageKit.h in Headers */ = {isa = PBXBuildFile; fileRef = B011FD5F1F1D48E600CE0D6A /* MessageKit.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC45179D4196151E0FD7A189 /* Pods_MessageKitTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5ED3F40490956A74E35BFD58 /* Pods_MessageKitTests.framework */; }; + D6AE5064A8D0E2FD15DB2F3F /* Pods_MessageKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03A7B19053F1302354AE9741 /* Pods_MessageKit.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -23,12 +25,18 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 03A7B19053F1302354AE9741 /* Pods_MessageKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MessageKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 15F571E7B0E9FFD6A34E4E39 /* Pods-MessageKitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MessageKitTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.debug.xcconfig"; sourceTree = ""; }; + 37685864038ED9ED95D54A6B /* Pods-MessageKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MessageKit.release.xcconfig"; path = "Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.release.xcconfig"; sourceTree = ""; }; + 5ED3F40490956A74E35BFD58 /* Pods_MessageKitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MessageKitTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 90AE798D8AF4DF5A08FA0857 /* Pods-MessageKitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MessageKitTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.release.xcconfig"; sourceTree = ""; }; B011FD5C1F1D48E600CE0D6A /* MessageKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MessageKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; B011FD5F1F1D48E600CE0D6A /* MessageKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageKit.h; sourceTree = ""; }; B011FD601F1D48E700CE0D6A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; B011FD651F1D48E700CE0D6A /* MessageKitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MessageKitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; B011FD6A1F1D48E700CE0D6A /* MessageKitTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageKitTests.swift; sourceTree = ""; }; B011FD6C1F1D48E700CE0D6A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + CE5C38D25AA833DD1F0F3CDD /* Pods-MessageKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MessageKit.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.debug.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -36,6 +44,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + D6AE5064A8D0E2FD15DB2F3F /* Pods_MessageKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -44,18 +53,41 @@ buildActionMask = 2147483647; files = ( B011FD661F1D48E700CE0D6A /* MessageKit.framework in Frameworks */, + BC45179D4196151E0FD7A189 /* Pods_MessageKitTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 21774BC7B716CD53B997A91A /* Pods */ = { + isa = PBXGroup; + children = ( + CE5C38D25AA833DD1F0F3CDD /* Pods-MessageKit.debug.xcconfig */, + 37685864038ED9ED95D54A6B /* Pods-MessageKit.release.xcconfig */, + 15F571E7B0E9FFD6A34E4E39 /* Pods-MessageKitTests.debug.xcconfig */, + 90AE798D8AF4DF5A08FA0857 /* Pods-MessageKitTests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + 8AC462B02AB45AF2E88DFCE0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 03A7B19053F1302354AE9741 /* Pods_MessageKit.framework */, + 5ED3F40490956A74E35BFD58 /* Pods_MessageKitTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; B011FD521F1D48E600CE0D6A = { isa = PBXGroup; children = ( B011FD5E1F1D48E600CE0D6A /* MessageKit */, B011FD691F1D48E700CE0D6A /* MessageKitTests */, B011FD5D1F1D48E600CE0D6A /* Products */, + 21774BC7B716CD53B997A91A /* Pods */, + 8AC462B02AB45AF2E88DFCE0 /* Frameworks */, ); sourceTree = ""; }; @@ -104,10 +136,12 @@ isa = PBXNativeTarget; buildConfigurationList = B011FD701F1D48E700CE0D6A /* Build configuration list for PBXNativeTarget "MessageKit" */; buildPhases = ( + 50657C327C29354A89F15E95 /* [CP] Check Pods Manifest.lock */, B011FD571F1D48E600CE0D6A /* Sources */, B011FD581F1D48E600CE0D6A /* Frameworks */, B011FD591F1D48E600CE0D6A /* Headers */, B011FD5A1F1D48E600CE0D6A /* Resources */, + 358B4AC0BD39D8779CB51726 /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -122,9 +156,12 @@ isa = PBXNativeTarget; buildConfigurationList = B011FD731F1D48E700CE0D6A /* Build configuration list for PBXNativeTarget "MessageKitTests" */; buildPhases = ( + 504AFAE755BAE7332732F276 /* [CP] Check Pods Manifest.lock */, B011FD611F1D48E700CE0D6A /* Sources */, B011FD621F1D48E700CE0D6A /* Frameworks */, B011FD631F1D48E700CE0D6A /* Resources */, + 4A35689F82E911BFAD7F2CBA /* [CP] Embed Pods Frameworks */, + F27300DBC43E309D9688EE4C /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -191,6 +228,84 @@ }; /* End PBXResourcesBuildPhase section */ +/* Begin PBXShellScriptBuildPhase section */ + 358B4AC0BD39D8779CB51726 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 4A35689F82E911BFAD7F2CBA /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 504AFAE755BAE7332732F276 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 50657C327C29354A89F15E95 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + F27300DBC43E309D9688EE4C /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + /* Begin PBXSourcesBuildPhase section */ B011FD571F1D48E600CE0D6A /* Sources */ = { isa = PBXSourcesBuildPhase; @@ -321,6 +436,7 @@ }; B011FD711F1D48E700CE0D6A /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = CE5C38D25AA833DD1F0F3CDD /* Pods-MessageKit.debug.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; DEFINES_MODULE = YES; @@ -339,6 +455,7 @@ }; B011FD721F1D48E700CE0D6A /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 37685864038ED9ED95D54A6B /* Pods-MessageKit.release.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = ""; DEFINES_MODULE = YES; @@ -357,6 +474,7 @@ }; B011FD741F1D48E700CE0D6A /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 15F571E7B0E9FFD6A34E4E39 /* Pods-MessageKitTests.debug.xcconfig */; buildSettings = { INFOPLIST_FILE = MessageKitTests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; @@ -368,6 +486,7 @@ }; B011FD751F1D48E700CE0D6A /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 90AE798D8AF4DF5A08FA0857 /* Pods-MessageKitTests.release.xcconfig */; buildSettings = { INFOPLIST_FILE = MessageKitTests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; diff --git a/MessageKit.xcworkspace/contents.xcworkspacedata b/MessageKit.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..be94986d --- /dev/null +++ b/MessageKit.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/Podfile b/Podfile new file mode 100644 index 00000000..70c960da --- /dev/null +++ b/Podfile @@ -0,0 +1,15 @@ +# Uncomment the next line to define a global platform for your project +platform :ios, '9.0' + +target 'MessageKit' do + # Comment the next line if you're not using Swift and don't want to use dynamic frameworks + use_frameworks! + + # Pods for MessageKit + + target 'MessageKitTests' do + inherit! :search_paths + # Pods for testing + end + +end diff --git a/Podfile.lock b/Podfile.lock new file mode 100644 index 00000000..18d8bf36 --- /dev/null +++ b/Podfile.lock @@ -0,0 +1,3 @@ +PODFILE CHECKSUM: 90830090b0b8c4f032626b8616a0dc30a12feecb + +COCOAPODS: 1.2.1 diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock new file mode 100644 index 00000000..18d8bf36 --- /dev/null +++ b/Pods/Manifest.lock @@ -0,0 +1,3 @@ +PODFILE CHECKSUM: 90830090b0b8c4f032626b8616a0dc30a12feecb + +COCOAPODS: 1.2.1 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 00000000..15a68a9f --- /dev/null +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,515 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 2B3038792C4D208C6CA2655C5C97C338 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; + 3E26524C54D977B615DB290352984005 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; + 4A956F888EA30ADC92762CB7DE17CE71 /* Pods-MessageKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A12965DC1309CC4A39B7C39E2B0D8D6 /* Pods-MessageKit-dummy.m */; }; + 7E8B016E034EA59F3084F808BC7D17F4 /* Pods-MessageKitTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACF0D912A9D2A343ABAC5131ABAB4F38 /* Pods-MessageKitTests-dummy.m */; }; + 9F37086D63D707F3B698E21AF52D27BC /* Pods-MessageKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CEAD8F7DDB8841A4A765D3D4612BD1 /* Pods-MessageKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ED0661D8A3228B371FA6FF3211D0F777 /* Pods-MessageKitTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A89BBDD1FEB16C92C82CEC277A658265 /* Pods-MessageKitTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 02AA66FCB48F116D3091954075255190 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 06CEAD8F7DDB8841A4A765D3D4612BD1 /* Pods-MessageKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MessageKit-umbrella.h"; sourceTree = ""; }; + 16869026981A55187F5F86C3EA77B0F3 /* Pods-MessageKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MessageKit.release.xcconfig"; sourceTree = ""; }; + 334221721F3109E63DE97BDC97D234A6 /* Pods-MessageKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MessageKit.debug.xcconfig"; sourceTree = ""; }; + 4B01DFE792DFFB5667A1CE05C7BEAAAC /* Pods-MessageKitTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-MessageKitTests-frameworks.sh"; sourceTree = ""; }; + 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 6B547101D0561CCD1D52DFCBA5177217 /* Pods-MessageKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-MessageKit.modulemap"; sourceTree = ""; }; + 6B97CA61459D6EC825423682703057D5 /* Pods-MessageKitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MessageKitTests.release.xcconfig"; sourceTree = ""; }; + 8A12965DC1309CC4A39B7C39E2B0D8D6 /* Pods-MessageKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MessageKit-dummy.m"; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 95ECBBF0E728E3FA62DA15C5B5AB8A8A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + A2F6E30147C38A5C105AC1E4AB6F02C6 /* Pods-MessageKit-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MessageKit-acknowledgements.plist"; sourceTree = ""; }; + A804379069CBC75F06693A26018C8D8E /* Pods_MessageKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_MessageKit.framework; path = "Pods-MessageKit.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + A89BBDD1FEB16C92C82CEC277A658265 /* Pods-MessageKitTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MessageKitTests-umbrella.h"; sourceTree = ""; }; + AB8B28E51DDD84E0D155144A86FDAF14 /* Pods-MessageKit-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-MessageKit-acknowledgements.markdown"; sourceTree = ""; }; + ACF0D912A9D2A343ABAC5131ABAB4F38 /* Pods-MessageKitTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MessageKitTests-dummy.m"; sourceTree = ""; }; + B5C0E52AFBA53C4CF1F501DFFB40B994 /* Pods_MessageKitTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_MessageKitTests.framework; path = "Pods-MessageKitTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + BAE859D14B8C308E01B649939120B798 /* Pods-MessageKitTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-MessageKitTests-acknowledgements.plist"; sourceTree = ""; }; + CC1D091D1684AF8CF38D4880DA860AC3 /* Pods-MessageKitTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-MessageKitTests-acknowledgements.markdown"; sourceTree = ""; }; + D63C537133D04194CCA085C44BCF903D /* Pods-MessageKitTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-MessageKitTests.modulemap"; sourceTree = ""; }; + D92D87050B74972B59B50E507E7B8BEA /* Pods-MessageKitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MessageKitTests.debug.xcconfig"; sourceTree = ""; }; + DAA10C45F31FE43DA61F9257F9B093BB /* Pods-MessageKit-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-MessageKit-resources.sh"; sourceTree = ""; }; + EFDBC9465BD871D89275039A8023E951 /* Pods-MessageKitTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-MessageKitTests-resources.sh"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 3F5B296C45710C98719DC6F35D92002C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2B3038792C4D208C6CA2655C5C97C338 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F2DAF53C4F1B8FDC0E37DBB2F886B2EF /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 3E26524C54D977B615DB290352984005 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 09EFCC4CF3519AC15627797445BC0C62 /* Pods-MessageKit */ = { + isa = PBXGroup; + children = ( + 02AA66FCB48F116D3091954075255190 /* Info.plist */, + 6B547101D0561CCD1D52DFCBA5177217 /* Pods-MessageKit.modulemap */, + AB8B28E51DDD84E0D155144A86FDAF14 /* Pods-MessageKit-acknowledgements.markdown */, + A2F6E30147C38A5C105AC1E4AB6F02C6 /* Pods-MessageKit-acknowledgements.plist */, + 8A12965DC1309CC4A39B7C39E2B0D8D6 /* Pods-MessageKit-dummy.m */, + DAA10C45F31FE43DA61F9257F9B093BB /* Pods-MessageKit-resources.sh */, + 06CEAD8F7DDB8841A4A765D3D4612BD1 /* Pods-MessageKit-umbrella.h */, + 334221721F3109E63DE97BDC97D234A6 /* Pods-MessageKit.debug.xcconfig */, + 16869026981A55187F5F86C3EA77B0F3 /* Pods-MessageKit.release.xcconfig */, + ); + name = "Pods-MessageKit"; + path = "Target Support Files/Pods-MessageKit"; + sourceTree = ""; + }; + 3DC6F85413580A17899D9E264E3736C2 /* Products */ = { + isa = PBXGroup; + children = ( + A804379069CBC75F06693A26018C8D8E /* Pods_MessageKit.framework */, + B5C0E52AFBA53C4CF1F501DFFB40B994 /* Pods_MessageKitTests.framework */, + ); + name = Products; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, + 3DC6F85413580A17899D9E264E3736C2 /* Products */, + F6A756B271A286936843C4634A9CEA7C /* Targets Support Files */, + ); + sourceTree = ""; + }; + 806F56ACD57935BDA27AF483DB08E59F /* Pods-MessageKitTests */ = { + isa = PBXGroup; + children = ( + 95ECBBF0E728E3FA62DA15C5B5AB8A8A /* Info.plist */, + D63C537133D04194CCA085C44BCF903D /* Pods-MessageKitTests.modulemap */, + CC1D091D1684AF8CF38D4880DA860AC3 /* Pods-MessageKitTests-acknowledgements.markdown */, + BAE859D14B8C308E01B649939120B798 /* Pods-MessageKitTests-acknowledgements.plist */, + ACF0D912A9D2A343ABAC5131ABAB4F38 /* Pods-MessageKitTests-dummy.m */, + 4B01DFE792DFFB5667A1CE05C7BEAAAC /* Pods-MessageKitTests-frameworks.sh */, + EFDBC9465BD871D89275039A8023E951 /* Pods-MessageKitTests-resources.sh */, + A89BBDD1FEB16C92C82CEC277A658265 /* Pods-MessageKitTests-umbrella.h */, + D92D87050B74972B59B50E507E7B8BEA /* Pods-MessageKitTests.debug.xcconfig */, + 6B97CA61459D6EC825423682703057D5 /* Pods-MessageKitTests.release.xcconfig */, + ); + name = "Pods-MessageKitTests"; + path = "Target Support Files/Pods-MessageKitTests"; + sourceTree = ""; + }; + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { + isa = PBXGroup; + children = ( + D35AF013A5F0BAD4F32504907A52519E /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { + isa = PBXGroup; + children = ( + 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + F6A756B271A286936843C4634A9CEA7C /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 09EFCC4CF3519AC15627797445BC0C62 /* Pods-MessageKit */, + 806F56ACD57935BDA27AF483DB08E59F /* Pods-MessageKitTests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + D6C7070DF7BDDC07BA900168168572C3 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9F37086D63D707F3B698E21AF52D27BC /* Pods-MessageKit-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EDE84C39F63AD1C3FBB4F566B574BBFE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ED0661D8A3228B371FA6FF3211D0F777 /* Pods-MessageKitTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 3924731F44E2A01DC4083016A144F1EE /* Pods-MessageKitTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 62E4589F95BD39A18D339639F03034B3 /* Build configuration list for PBXNativeTarget "Pods-MessageKitTests" */; + buildPhases = ( + 4E698E45847BE4EB966D27E0519D45D7 /* Sources */, + F2DAF53C4F1B8FDC0E37DBB2F886B2EF /* Frameworks */, + EDE84C39F63AD1C3FBB4F566B574BBFE /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-MessageKitTests"; + productName = "Pods-MessageKitTests"; + productReference = B5C0E52AFBA53C4CF1F501DFFB40B994 /* Pods_MessageKitTests.framework */; + productType = "com.apple.product-type.framework"; + }; + A73CCD3E2A4D994C76189B2AADA96519 /* Pods-MessageKit */ = { + isa = PBXNativeTarget; + buildConfigurationList = 469B2305638F7DFE07452832F0DBFFBA /* Build configuration list for PBXNativeTarget "Pods-MessageKit" */; + buildPhases = ( + 7A39638DE881350D7BB3E813F40EFC29 /* Sources */, + 3F5B296C45710C98719DC6F35D92002C /* Frameworks */, + D6C7070DF7BDDC07BA900168168572C3 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-MessageKit"; + productName = "Pods-MessageKit"; + productReference = A804379069CBC75F06693A26018C8D8E /* Pods_MessageKit.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0830; + LastUpgradeCheck = 0700; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = 3DC6F85413580A17899D9E264E3736C2 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + A73CCD3E2A4D994C76189B2AADA96519 /* Pods-MessageKit */, + 3924731F44E2A01DC4083016A144F1EE /* Pods-MessageKitTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 4E698E45847BE4EB966D27E0519D45D7 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7E8B016E034EA59F3084F808BC7D17F4 /* Pods-MessageKitTests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7A39638DE881350D7BB3E813F40EFC29 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4A956F888EA30ADC92762CB7DE17CE71 /* Pods-MessageKit-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 4A7C5E2F900D7B18A4C47A5EECDB5CFC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 16869026981A55187F5F86C3EA77B0F3 /* Pods-MessageKit.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-MessageKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-MessageKit/Pods-MessageKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_MessageKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 4E487F173E6C9664F4E9E26B9635D23C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "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 = 9.0; + ONLY_ACTIVE_ARCH = YES; + PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 508B1C6E0AEFCCBBD6B1691C6123F16F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6B97CA61459D6EC825423682703057D5 /* Pods-MessageKitTests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-MessageKitTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_MessageKitTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 89238F67CE6BE16AF698F2797C8AD1E7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D92D87050B74972B59B50E507E7B8BEA /* Pods-MessageKitTests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-MessageKitTests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_MessageKitTests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + BDD0139D6EB93FA375F887ABD62DAB2E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + 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 = 9.0; + PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C1EF355549374492A52CE56A052774A5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 334221721F3109E63DE97BDC97D234A6 /* Pods-MessageKit.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-MessageKit/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-MessageKit/Pods-MessageKit.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_MessageKit; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4E487F173E6C9664F4E9E26B9635D23C /* Debug */, + BDD0139D6EB93FA375F887ABD62DAB2E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 469B2305638F7DFE07452832F0DBFFBA /* Build configuration list for PBXNativeTarget "Pods-MessageKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1EF355549374492A52CE56A052774A5 /* Debug */, + 4A7C5E2F900D7B18A4C47A5EECDB5CFC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 62E4589F95BD39A18D339639F03034B3 /* Build configuration list for PBXNativeTarget "Pods-MessageKitTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 89238F67CE6BE16AF698F2797C8AD1E7 /* Debug */, + 508B1C6E0AEFCCBBD6B1691C6123F16F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKit.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKit.xcscheme new file mode 100644 index 00000000..01f883e6 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKit.xcscheme @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKitTests.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKitTests.xcscheme new file mode 100644 index 00000000..d46f5d50 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/Pods-MessageKitTests.xcscheme @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000..438e7361 --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/omar.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,21 @@ + + + + + SchemeUserState + + Pods-MessageKit.xcscheme + + isShown + + + Pods-MessageKitTests.xcscheme + + isShown + + + + SuppressBuildableAutocreation + + + diff --git a/Pods/Target Support Files/Pods-MessageKit/Info.plist b/Pods/Target Support Files/Pods-MessageKit/Info.plist new file mode 100644 index 00000000..2243fe6e --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.markdown b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.markdown new file mode 100644 index 00000000..102af753 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.plist b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.plist new file mode 100644 index 00000000..7acbad1e --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-dummy.m b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-dummy.m new file mode 100644 index 00000000..b2f43ae6 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_MessageKit : NSObject +@end +@implementation PodsDummy_Pods_MessageKit +@end diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-resources.sh b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-resources.sh new file mode 100755 index 00000000..aed060f0 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-umbrella.h b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-umbrella.h new file mode 100644 index 00000000..f43c264c --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_MessageKitVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_MessageKitVersionString[]; + diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.debug.xcconfig b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.debug.xcconfig new file mode 100644 index 00000000..4517e457 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.debug.xcconfig @@ -0,0 +1,6 @@ +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.modulemap b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.modulemap new file mode 100644 index 00000000..a842bb19 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MessageKit { + umbrella header "Pods-MessageKit-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.release.xcconfig b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.release.xcconfig new file mode 100644 index 00000000..4517e457 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKit/Pods-MessageKit.release.xcconfig @@ -0,0 +1,6 @@ +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Info.plist b/Pods/Target Support Files/Pods-MessageKitTests/Info.plist new file mode 100644 index 00000000..2243fe6e --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.markdown b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.markdown new file mode 100644 index 00000000..102af753 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.plist b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.plist new file mode 100644 index 00000000..7acbad1e --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-dummy.m b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-dummy.m new file mode 100644 index 00000000..7b5a870f --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_MessageKitTests : NSObject +@end +@implementation PodsDummy_Pods_MessageKitTests +@end diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-frameworks.sh b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-frameworks.sh new file mode 100755 index 00000000..0f29f13c --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-frameworks.sh @@ -0,0 +1,92 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-resources.sh b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-resources.sh new file mode 100755 index 00000000..aed060f0 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-umbrella.h b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-umbrella.h new file mode 100644 index 00000000..19a2c502 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_MessageKitTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_MessageKitTestsVersionString[]; + diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.debug.xcconfig b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.debug.xcconfig new file mode 100644 index 00000000..a3933b9e --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.debug.xcconfig @@ -0,0 +1,6 @@ +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.modulemap b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.modulemap new file mode 100644 index 00000000..5d865121 --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MessageKitTests { + umbrella header "Pods-MessageKitTests-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.release.xcconfig b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.release.xcconfig new file mode 100644 index 00000000..a3933b9e --- /dev/null +++ b/Pods/Target Support Files/Pods-MessageKitTests/Pods-MessageKitTests.release.xcconfig @@ -0,0 +1,6 @@ +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods