├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── SwiftDictionaryCoding.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-SwiftDictionaryCoding_Example │ │ ├── Info.plist │ │ ├── Pods-SwiftDictionaryCoding_Example-acknowledgements.markdown │ │ ├── Pods-SwiftDictionaryCoding_Example-acknowledgements.plist │ │ ├── Pods-SwiftDictionaryCoding_Example-dummy.m │ │ ├── Pods-SwiftDictionaryCoding_Example-frameworks.sh │ │ ├── Pods-SwiftDictionaryCoding_Example-resources.sh │ │ ├── Pods-SwiftDictionaryCoding_Example-umbrella.h │ │ ├── Pods-SwiftDictionaryCoding_Example.debug.xcconfig │ │ ├── Pods-SwiftDictionaryCoding_Example.modulemap │ │ └── Pods-SwiftDictionaryCoding_Example.release.xcconfig │ │ ├── Pods-SwiftDictionaryCoding_Tests │ │ ├── Info.plist │ │ ├── Pods-SwiftDictionaryCoding_Tests-acknowledgements.markdown │ │ ├── Pods-SwiftDictionaryCoding_Tests-acknowledgements.plist │ │ ├── Pods-SwiftDictionaryCoding_Tests-dummy.m │ │ ├── Pods-SwiftDictionaryCoding_Tests-frameworks.sh │ │ ├── Pods-SwiftDictionaryCoding_Tests-resources.sh │ │ ├── Pods-SwiftDictionaryCoding_Tests-umbrella.h │ │ ├── Pods-SwiftDictionaryCoding_Tests.debug.xcconfig │ │ ├── Pods-SwiftDictionaryCoding_Tests.modulemap │ │ └── Pods-SwiftDictionaryCoding_Tests.release.xcconfig │ │ └── SwiftDictionaryCoding │ │ ├── Info.plist │ │ ├── SwiftDictionaryCoding-dummy.m │ │ ├── SwiftDictionaryCoding-prefix.pch │ │ ├── SwiftDictionaryCoding-umbrella.h │ │ ├── SwiftDictionaryCoding.modulemap │ │ └── SwiftDictionaryCoding.xcconfig ├── SwiftDictionaryCoding.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── SwiftDictionaryCoding-Example.xcscheme ├── SwiftDictionaryCoding.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── SwiftDictionaryCoding │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── DicionaryDecoderTests.swift │ ├── DicionaryEncoderTests.swift │ └── Info.plist ├── LICENSE ├── README.md ├── SwiftDictionaryCoding.podspec ├── SwiftDictionaryCoding ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── DictionaryDecoder.swift │ └── DictionaryEncoder.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Swift Package Manager 36 | # 37 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 38 | # Packages/ 39 | # Package.pins 40 | # Package.resolved 41 | .build/ 42 | 43 | # CocoaPods 44 | # 45 | # We recommend against adding the Pods directory to your .gitignore. However 46 | # you should judge for yourself, the pros and cons are mentioned at: 47 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 48 | # 49 | # Pods/ 50 | 51 | # Carthage 52 | # 53 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 54 | # Carthage/Checkouts 55 | 56 | Carthage/Build 57 | 58 | # fastlane 59 | # 60 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 61 | # screenshots whenever they are needed. 62 | # For more information about the recommended setup visit: 63 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 64 | 65 | fastlane/report.xml 66 | fastlane/Preview.html 67 | fastlane/screenshots/**/*.png 68 | fastlane/test_output 69 | 70 | *.DS_Store 71 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/SwiftDictionaryCoding.xcworkspace -scheme SwiftDictionaryCoding-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'SwiftDictionaryCoding_Example' do 4 | pod 'SwiftDictionaryCoding', :path => '../' 5 | 6 | target 'SwiftDictionaryCoding_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SwiftDictionaryCoding (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SwiftDictionaryCoding (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SwiftDictionaryCoding: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | SwiftDictionaryCoding: 0bb6b1b6762604a2ee6eda7adf73be928be7f297 13 | 14 | PODFILE CHECKSUM: 2b2e9869574ce27b0949ff049c078a48fddffd6a 15 | 16 | COCOAPODS: 1.5.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SwiftDictionaryCoding.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SwiftDictionaryCoding", 3 | "version": "0.1.0", 4 | "summary": "A short description of SwiftDictionaryCoding.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/ashleymills/SwiftDictionaryCoding", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "ashleymills": "ashleymills@mac.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/ashleymills/SwiftDictionaryCoding.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "SwiftDictionaryCoding/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SwiftDictionaryCoding (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SwiftDictionaryCoding (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SwiftDictionaryCoding: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | SwiftDictionaryCoding: 0bb6b1b6762604a2ee6eda7adf73be928be7f297 13 | 14 | PODFILE CHECKSUM: 2b2e9869574ce27b0949ff049c078a48fddffd6a 15 | 16 | COCOAPODS: 1.5.3 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2FDF5C947001BD09E6EA8CD753EC8767 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 11 | 603F988B9AB3762D43D5743A0DD8D493 /* Pods-SwiftDictionaryCoding_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6BCC845738616088ED81EC9512ECA1 /* Pods-SwiftDictionaryCoding_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 90F46233A2B2134478A6FA9A841833F4 /* SwiftDictionaryCoding-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 25216CBD41BCF0DA872594E6ED34E533 /* SwiftDictionaryCoding-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | A8C523B9615BCC2A57CC95896002DA4D /* Pods-SwiftDictionaryCoding_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F77DC4FBA67EFF9BF8A47DB0D3E68353 /* Pods-SwiftDictionaryCoding_Example-dummy.m */; }; 14 | B9E0628253B951DE50A73248F3FC6B42 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 15 | C577099234B763CB2EEA638C946EF160 /* Pods-SwiftDictionaryCoding_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4A705B5C52E58BACA2798658667E2C /* Pods-SwiftDictionaryCoding_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | CAE6482D214A7473000D0BAE /* DictionaryEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE6482C214A7472000D0BAE /* DictionaryEncoder.swift */; }; 17 | CAE6482F214A7484000D0BAE /* DictionaryDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE6482E214A7484000D0BAE /* DictionaryDecoder.swift */; }; 18 | CCF7ACA63A6FEAF3A46AD7EE3BEC6EF7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */; }; 19 | F21CE439BC11887765A3AE253D710134 /* Pods-SwiftDictionaryCoding_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DAD3C56F5DFE2EE50010F5913360C3B /* Pods-SwiftDictionaryCoding_Tests-dummy.m */; }; 20 | F3C14F8ABA54DD6F212993119ECED229 /* SwiftDictionaryCoding-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BAFD030C9B3B34A7BBC847B8DA3549 /* SwiftDictionaryCoding-dummy.m */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 11A10F545E550DBB8380DD4D98C890AD /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = C394B5AAEAEE43A88EFE06D09E0CCCD7; 29 | remoteInfo = SwiftDictionaryCoding; 30 | }; 31 | 5243EE2FC18DBE02C942A2CBB0CD4446 /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 34 | proxyType = 1; 35 | remoteGlobalIDString = 2559DC847AC6D31AD6330C335A5C3B59; 36 | remoteInfo = "Pods-SwiftDictionaryCoding_Example"; 37 | }; 38 | /* End PBXContainerItemProxy section */ 39 | 40 | /* Begin PBXFileReference section */ 41 | 00B5AB4E971CE7086F6F16E29FB87ABD /* Pods-SwiftDictionaryCoding_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDictionaryCoding_Tests.release.xcconfig"; sourceTree = ""; }; 42 | 0B449B35380EB6D5E8BC110B270C9799 /* SwiftDictionaryCoding-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDictionaryCoding-prefix.pch"; sourceTree = ""; }; 43 | 0DAD3C56F5DFE2EE50010F5913360C3B /* Pods-SwiftDictionaryCoding_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftDictionaryCoding_Tests-dummy.m"; sourceTree = ""; }; 44 | 127248DF86FDADCA5145063E14C7A4AB /* Pods-SwiftDictionaryCoding_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftDictionaryCoding_Tests-acknowledgements.plist"; sourceTree = ""; }; 45 | 141EDB67D8B0E19A4494162772BE4DE4 /* Pods-SwiftDictionaryCoding_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDictionaryCoding_Tests-frameworks.sh"; sourceTree = ""; }; 46 | 187972752834E3A46E789E88A8368249 /* Pods_SwiftDictionaryCoding_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftDictionaryCoding_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | 1B484C7549CDCB39BF789BE3ACCA1792 /* Pods-SwiftDictionaryCoding_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDictionaryCoding_Example-resources.sh"; sourceTree = ""; }; 48 | 1E91E4A0DA6980992677E1AB42F24EE2 /* Pods-SwiftDictionaryCoding_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SwiftDictionaryCoding_Tests.modulemap"; sourceTree = ""; }; 49 | 25216CBD41BCF0DA872594E6ED34E533 /* SwiftDictionaryCoding-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftDictionaryCoding-umbrella.h"; sourceTree = ""; }; 50 | 266D6EF822A7F1EECF22ED9414816486 /* Pods-SwiftDictionaryCoding_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDictionaryCoding_Tests-resources.sh"; sourceTree = ""; }; 51 | 2E6BCC845738616088ED81EC9512ECA1 /* Pods-SwiftDictionaryCoding_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftDictionaryCoding_Tests-umbrella.h"; sourceTree = ""; }; 52 | 347ED57402DE574CCEFD284ABF2ECE6D /* Pods-SwiftDictionaryCoding_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftDictionaryCoding_Example-acknowledgements.markdown"; sourceTree = ""; }; 53 | 359A354AB8D14E58814E0CC6BE22AD9B /* Pods-SwiftDictionaryCoding_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SwiftDictionaryCoding_Example-acknowledgements.plist"; sourceTree = ""; }; 54 | 3989C9D9ACDD4DD6AE1F9F68AFD88FA3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 55 | 3BAE2158582983C6069DA55F4292F516 /* SwiftDictionaryCoding.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftDictionaryCoding.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 415AFB4A5D8CBD6A623255FCCFA56EE0 /* Pods-SwiftDictionaryCoding_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDictionaryCoding_Tests.debug.xcconfig"; sourceTree = ""; }; 57 | 4B51A6A08101B735A48BD02A5071501D /* SwiftDictionaryCoding.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = SwiftDictionaryCoding.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 58 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 59 | 61710050B7A80C3F6E3736679CED1FA6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 60 | 779C64DE347EF0412F326CCC2999AEDD /* Pods-SwiftDictionaryCoding_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDictionaryCoding_Example.release.xcconfig"; sourceTree = ""; }; 61 | 8A7511828D46CBC8C6E10801FD6CA899 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 62 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 63 | 982722E7421A454544C25D8758AA59CC /* Pods-SwiftDictionaryCoding_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SwiftDictionaryCoding_Example.modulemap"; sourceTree = ""; }; 64 | 9A72C8EE7E3AC02FA7F99FE54E8A202D /* SwiftDictionaryCoding.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftDictionaryCoding.xcconfig; sourceTree = ""; }; 65 | 9C4A705B5C52E58BACA2798658667E2C /* Pods-SwiftDictionaryCoding_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SwiftDictionaryCoding_Example-umbrella.h"; sourceTree = ""; }; 66 | AE87582C5AB20FFC44EC5526FBB87B1B /* Pods-SwiftDictionaryCoding_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SwiftDictionaryCoding_Example-frameworks.sh"; sourceTree = ""; }; 67 | B26CC1FBBE5E762133FA7D45C811E893 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 68 | B649A39EBA2495FD87B645F6EC7ADD31 /* Pods-SwiftDictionaryCoding_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SwiftDictionaryCoding_Tests-acknowledgements.markdown"; sourceTree = ""; }; 69 | B8BAFD030C9B3B34A7BBC847B8DA3549 /* SwiftDictionaryCoding-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftDictionaryCoding-dummy.m"; sourceTree = ""; }; 70 | CAE6482C214A7472000D0BAE /* DictionaryEncoder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DictionaryEncoder.swift; path = SwiftDictionaryCoding/Classes/DictionaryEncoder.swift; sourceTree = ""; }; 71 | CAE6482E214A7484000D0BAE /* DictionaryDecoder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DictionaryDecoder.swift; path = SwiftDictionaryCoding/Classes/DictionaryDecoder.swift; sourceTree = ""; }; 72 | DB455219836F32897932254203A89B07 /* Pods-SwiftDictionaryCoding_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SwiftDictionaryCoding_Example.debug.xcconfig"; sourceTree = ""; }; 73 | EF369929301C369C817AE840748C680E /* Pods_SwiftDictionaryCoding_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftDictionaryCoding_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 74 | F092E424A5FCB8F4F603AD2A8E4E39A0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 75 | F77DC4FBA67EFF9BF8A47DB0D3E68353 /* Pods-SwiftDictionaryCoding_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SwiftDictionaryCoding_Example-dummy.m"; sourceTree = ""; }; 76 | FA521703D4AA787340A598FD0DD7D5E0 /* SwiftDictionaryCoding.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftDictionaryCoding.modulemap; sourceTree = ""; }; 77 | /* End PBXFileReference section */ 78 | 79 | /* Begin PBXFrameworksBuildPhase section */ 80 | 21D0E22681C22E36DD8936E19E672BF4 /* Frameworks */ = { 81 | isa = PBXFrameworksBuildPhase; 82 | buildActionMask = 2147483647; 83 | files = ( 84 | CCF7ACA63A6FEAF3A46AD7EE3BEC6EF7 /* Foundation.framework in Frameworks */, 85 | ); 86 | runOnlyForDeploymentPostprocessing = 0; 87 | }; 88 | 5CE5C9706F2F52B1F40D185F4CBBA612 /* Frameworks */ = { 89 | isa = PBXFrameworksBuildPhase; 90 | buildActionMask = 2147483647; 91 | files = ( 92 | 2FDF5C947001BD09E6EA8CD753EC8767 /* Foundation.framework in Frameworks */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | 663727E444669E180859EE291B7BC334 /* Frameworks */ = { 97 | isa = PBXFrameworksBuildPhase; 98 | buildActionMask = 2147483647; 99 | files = ( 100 | B9E0628253B951DE50A73248F3FC6B42 /* Foundation.framework in Frameworks */, 101 | ); 102 | runOnlyForDeploymentPostprocessing = 0; 103 | }; 104 | /* End PBXFrameworksBuildPhase section */ 105 | 106 | /* Begin PBXGroup section */ 107 | 1F98407F4DD4806EA0222047D2F62105 /* Pods-SwiftDictionaryCoding_Example */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 61710050B7A80C3F6E3736679CED1FA6 /* Info.plist */, 111 | 982722E7421A454544C25D8758AA59CC /* Pods-SwiftDictionaryCoding_Example.modulemap */, 112 | 347ED57402DE574CCEFD284ABF2ECE6D /* Pods-SwiftDictionaryCoding_Example-acknowledgements.markdown */, 113 | 359A354AB8D14E58814E0CC6BE22AD9B /* Pods-SwiftDictionaryCoding_Example-acknowledgements.plist */, 114 | F77DC4FBA67EFF9BF8A47DB0D3E68353 /* Pods-SwiftDictionaryCoding_Example-dummy.m */, 115 | AE87582C5AB20FFC44EC5526FBB87B1B /* Pods-SwiftDictionaryCoding_Example-frameworks.sh */, 116 | 1B484C7549CDCB39BF789BE3ACCA1792 /* Pods-SwiftDictionaryCoding_Example-resources.sh */, 117 | 9C4A705B5C52E58BACA2798658667E2C /* Pods-SwiftDictionaryCoding_Example-umbrella.h */, 118 | DB455219836F32897932254203A89B07 /* Pods-SwiftDictionaryCoding_Example.debug.xcconfig */, 119 | 779C64DE347EF0412F326CCC2999AEDD /* Pods-SwiftDictionaryCoding_Example.release.xcconfig */, 120 | ); 121 | name = "Pods-SwiftDictionaryCoding_Example"; 122 | path = "Target Support Files/Pods-SwiftDictionaryCoding_Example"; 123 | sourceTree = ""; 124 | }; 125 | 28D128B1A67CC984B578B4CDFCEA32E3 /* Products */ = { 126 | isa = PBXGroup; 127 | children = ( 128 | EF369929301C369C817AE840748C680E /* Pods_SwiftDictionaryCoding_Example.framework */, 129 | 187972752834E3A46E789E88A8368249 /* Pods_SwiftDictionaryCoding_Tests.framework */, 130 | 3BAE2158582983C6069DA55F4292F516 /* SwiftDictionaryCoding.framework */, 131 | ); 132 | name = Products; 133 | sourceTree = ""; 134 | }; 135 | 3E05E81F715C19F288797CCCE956D5E3 /* Support Files */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | F092E424A5FCB8F4F603AD2A8E4E39A0 /* Info.plist */, 139 | FA521703D4AA787340A598FD0DD7D5E0 /* SwiftDictionaryCoding.modulemap */, 140 | 9A72C8EE7E3AC02FA7F99FE54E8A202D /* SwiftDictionaryCoding.xcconfig */, 141 | B8BAFD030C9B3B34A7BBC847B8DA3549 /* SwiftDictionaryCoding-dummy.m */, 142 | 0B449B35380EB6D5E8BC110B270C9799 /* SwiftDictionaryCoding-prefix.pch */, 143 | 25216CBD41BCF0DA872594E6ED34E533 /* SwiftDictionaryCoding-umbrella.h */, 144 | ); 145 | name = "Support Files"; 146 | path = "Example/Pods/Target Support Files/SwiftDictionaryCoding"; 147 | sourceTree = ""; 148 | }; 149 | 47CF244039EF7A8780CEDC78882740FD /* Pod */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 8A7511828D46CBC8C6E10801FD6CA899 /* LICENSE */, 153 | B26CC1FBBE5E762133FA7D45C811E893 /* README.md */, 154 | 4B51A6A08101B735A48BD02A5071501D /* SwiftDictionaryCoding.podspec */, 155 | ); 156 | name = Pod; 157 | sourceTree = ""; 158 | }; 159 | 570AD0461949597FD8D2ADD27B72DB3F /* Development Pods */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 5789808C83A79039D15F1AE0657B63C3 /* SwiftDictionaryCoding */, 163 | ); 164 | name = "Development Pods"; 165 | sourceTree = ""; 166 | }; 167 | 5789808C83A79039D15F1AE0657B63C3 /* SwiftDictionaryCoding */ = { 168 | isa = PBXGroup; 169 | children = ( 170 | CAE6482C214A7472000D0BAE /* DictionaryEncoder.swift */, 171 | CAE6482E214A7484000D0BAE /* DictionaryDecoder.swift */, 172 | 47CF244039EF7A8780CEDC78882740FD /* Pod */, 173 | 3E05E81F715C19F288797CCCE956D5E3 /* Support Files */, 174 | ); 175 | name = SwiftDictionaryCoding; 176 | path = ../..; 177 | sourceTree = ""; 178 | }; 179 | 5AAF9BDACC5C64673ABC9881AAD77AF8 /* Targets Support Files */ = { 180 | isa = PBXGroup; 181 | children = ( 182 | 1F98407F4DD4806EA0222047D2F62105 /* Pods-SwiftDictionaryCoding_Example */, 183 | 9524BA5ABE746650F5FA211406EB7CF7 /* Pods-SwiftDictionaryCoding_Tests */, 184 | ); 185 | name = "Targets Support Files"; 186 | sourceTree = ""; 187 | }; 188 | 5E0D919E635D23B70123790B8308F8EF /* iOS */ = { 189 | isa = PBXGroup; 190 | children = ( 191 | 5A16F4CFC63FAC439D7A04994F579A03 /* Foundation.framework */, 192 | ); 193 | name = iOS; 194 | sourceTree = ""; 195 | }; 196 | 7DB346D0F39D3F0E887471402A8071AB = { 197 | isa = PBXGroup; 198 | children = ( 199 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 200 | 570AD0461949597FD8D2ADD27B72DB3F /* Development Pods */, 201 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 202 | 28D128B1A67CC984B578B4CDFCEA32E3 /* Products */, 203 | 5AAF9BDACC5C64673ABC9881AAD77AF8 /* Targets Support Files */, 204 | ); 205 | sourceTree = ""; 206 | }; 207 | 9524BA5ABE746650F5FA211406EB7CF7 /* Pods-SwiftDictionaryCoding_Tests */ = { 208 | isa = PBXGroup; 209 | children = ( 210 | 3989C9D9ACDD4DD6AE1F9F68AFD88FA3 /* Info.plist */, 211 | 1E91E4A0DA6980992677E1AB42F24EE2 /* Pods-SwiftDictionaryCoding_Tests.modulemap */, 212 | B649A39EBA2495FD87B645F6EC7ADD31 /* Pods-SwiftDictionaryCoding_Tests-acknowledgements.markdown */, 213 | 127248DF86FDADCA5145063E14C7A4AB /* Pods-SwiftDictionaryCoding_Tests-acknowledgements.plist */, 214 | 0DAD3C56F5DFE2EE50010F5913360C3B /* Pods-SwiftDictionaryCoding_Tests-dummy.m */, 215 | 141EDB67D8B0E19A4494162772BE4DE4 /* Pods-SwiftDictionaryCoding_Tests-frameworks.sh */, 216 | 266D6EF822A7F1EECF22ED9414816486 /* Pods-SwiftDictionaryCoding_Tests-resources.sh */, 217 | 2E6BCC845738616088ED81EC9512ECA1 /* Pods-SwiftDictionaryCoding_Tests-umbrella.h */, 218 | 415AFB4A5D8CBD6A623255FCCFA56EE0 /* Pods-SwiftDictionaryCoding_Tests.debug.xcconfig */, 219 | 00B5AB4E971CE7086F6F16E29FB87ABD /* Pods-SwiftDictionaryCoding_Tests.release.xcconfig */, 220 | ); 221 | name = "Pods-SwiftDictionaryCoding_Tests"; 222 | path = "Target Support Files/Pods-SwiftDictionaryCoding_Tests"; 223 | sourceTree = ""; 224 | }; 225 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 226 | isa = PBXGroup; 227 | children = ( 228 | 5E0D919E635D23B70123790B8308F8EF /* iOS */, 229 | ); 230 | name = Frameworks; 231 | sourceTree = ""; 232 | }; 233 | /* End PBXGroup section */ 234 | 235 | /* Begin PBXHeadersBuildPhase section */ 236 | 24331C6D2573A579DBACA8F599C88841 /* Headers */ = { 237 | isa = PBXHeadersBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | C577099234B763CB2EEA638C946EF160 /* Pods-SwiftDictionaryCoding_Example-umbrella.h in Headers */, 241 | ); 242 | runOnlyForDeploymentPostprocessing = 0; 243 | }; 244 | BE79AE21156DB50D1AD2386A07ADD0B6 /* Headers */ = { 245 | isa = PBXHeadersBuildPhase; 246 | buildActionMask = 2147483647; 247 | files = ( 248 | 603F988B9AB3762D43D5743A0DD8D493 /* Pods-SwiftDictionaryCoding_Tests-umbrella.h in Headers */, 249 | ); 250 | runOnlyForDeploymentPostprocessing = 0; 251 | }; 252 | F2DC97BB15DF55EE846937D0FE157D1D /* Headers */ = { 253 | isa = PBXHeadersBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | 90F46233A2B2134478A6FA9A841833F4 /* SwiftDictionaryCoding-umbrella.h in Headers */, 257 | ); 258 | runOnlyForDeploymentPostprocessing = 0; 259 | }; 260 | /* End PBXHeadersBuildPhase section */ 261 | 262 | /* Begin PBXNativeTarget section */ 263 | 2559DC847AC6D31AD6330C335A5C3B59 /* Pods-SwiftDictionaryCoding_Example */ = { 264 | isa = PBXNativeTarget; 265 | buildConfigurationList = DE5499157BFE1D8E488037FD26197D64 /* Build configuration list for PBXNativeTarget "Pods-SwiftDictionaryCoding_Example" */; 266 | buildPhases = ( 267 | 24331C6D2573A579DBACA8F599C88841 /* Headers */, 268 | 75030A7CC05DDEE18081CBF3C6A65437 /* Sources */, 269 | 663727E444669E180859EE291B7BC334 /* Frameworks */, 270 | D9179F841AE534FB39C004A06B3D3705 /* Resources */, 271 | ); 272 | buildRules = ( 273 | ); 274 | dependencies = ( 275 | 7750BEFB28C54251626F77566B4A6FD6 /* PBXTargetDependency */, 276 | ); 277 | name = "Pods-SwiftDictionaryCoding_Example"; 278 | productName = "Pods-SwiftDictionaryCoding_Example"; 279 | productReference = EF369929301C369C817AE840748C680E /* Pods_SwiftDictionaryCoding_Example.framework */; 280 | productType = "com.apple.product-type.framework"; 281 | }; 282 | 78C8A9F6B3D11B3931325ECFB9EA918D /* Pods-SwiftDictionaryCoding_Tests */ = { 283 | isa = PBXNativeTarget; 284 | buildConfigurationList = 452C0EC7C24A71CE1E04EC9CD40F03CD /* Build configuration list for PBXNativeTarget "Pods-SwiftDictionaryCoding_Tests" */; 285 | buildPhases = ( 286 | BE79AE21156DB50D1AD2386A07ADD0B6 /* Headers */, 287 | 83DC3A41AF7F2B481FA89B4A148B2154 /* Sources */, 288 | 5CE5C9706F2F52B1F40D185F4CBBA612 /* Frameworks */, 289 | 73EE0EDA05A8FBCCA9DAF948C5ACC83D /* Resources */, 290 | ); 291 | buildRules = ( 292 | ); 293 | dependencies = ( 294 | 66AE143C056EA98DD270F6317F0D7691 /* PBXTargetDependency */, 295 | ); 296 | name = "Pods-SwiftDictionaryCoding_Tests"; 297 | productName = "Pods-SwiftDictionaryCoding_Tests"; 298 | productReference = 187972752834E3A46E789E88A8368249 /* Pods_SwiftDictionaryCoding_Tests.framework */; 299 | productType = "com.apple.product-type.framework"; 300 | }; 301 | C394B5AAEAEE43A88EFE06D09E0CCCD7 /* SwiftDictionaryCoding */ = { 302 | isa = PBXNativeTarget; 303 | buildConfigurationList = 90129C5AC9FB85F2669CB7696D1E094F /* Build configuration list for PBXNativeTarget "SwiftDictionaryCoding" */; 304 | buildPhases = ( 305 | F2DC97BB15DF55EE846937D0FE157D1D /* Headers */, 306 | 0C448D002C826C5F7C1F2C45B8F2EC9B /* Sources */, 307 | 21D0E22681C22E36DD8936E19E672BF4 /* Frameworks */, 308 | F0F6CF99D00880171F1AEC6BDB29DAE0 /* Resources */, 309 | ); 310 | buildRules = ( 311 | ); 312 | dependencies = ( 313 | ); 314 | name = SwiftDictionaryCoding; 315 | productName = SwiftDictionaryCoding; 316 | productReference = 3BAE2158582983C6069DA55F4292F516 /* SwiftDictionaryCoding.framework */; 317 | productType = "com.apple.product-type.framework"; 318 | }; 319 | /* End PBXNativeTarget section */ 320 | 321 | /* Begin PBXProject section */ 322 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 323 | isa = PBXProject; 324 | attributes = { 325 | LastSwiftUpdateCheck = 0930; 326 | LastUpgradeCheck = 0940; 327 | }; 328 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 329 | compatibilityVersion = "Xcode 9.3"; 330 | developmentRegion = English; 331 | hasScannedForEncodings = 0; 332 | knownRegions = ( 333 | en, 334 | ); 335 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 336 | productRefGroup = 28D128B1A67CC984B578B4CDFCEA32E3 /* Products */; 337 | projectDirPath = ""; 338 | projectRoot = ""; 339 | targets = ( 340 | 2559DC847AC6D31AD6330C335A5C3B59 /* Pods-SwiftDictionaryCoding_Example */, 341 | 78C8A9F6B3D11B3931325ECFB9EA918D /* Pods-SwiftDictionaryCoding_Tests */, 342 | C394B5AAEAEE43A88EFE06D09E0CCCD7 /* SwiftDictionaryCoding */, 343 | ); 344 | }; 345 | /* End PBXProject section */ 346 | 347 | /* Begin PBXResourcesBuildPhase section */ 348 | 73EE0EDA05A8FBCCA9DAF948C5ACC83D /* Resources */ = { 349 | isa = PBXResourcesBuildPhase; 350 | buildActionMask = 2147483647; 351 | files = ( 352 | ); 353 | runOnlyForDeploymentPostprocessing = 0; 354 | }; 355 | D9179F841AE534FB39C004A06B3D3705 /* Resources */ = { 356 | isa = PBXResourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | ); 360 | runOnlyForDeploymentPostprocessing = 0; 361 | }; 362 | F0F6CF99D00880171F1AEC6BDB29DAE0 /* Resources */ = { 363 | isa = PBXResourcesBuildPhase; 364 | buildActionMask = 2147483647; 365 | files = ( 366 | ); 367 | runOnlyForDeploymentPostprocessing = 0; 368 | }; 369 | /* End PBXResourcesBuildPhase section */ 370 | 371 | /* Begin PBXSourcesBuildPhase section */ 372 | 0C448D002C826C5F7C1F2C45B8F2EC9B /* Sources */ = { 373 | isa = PBXSourcesBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | F3C14F8ABA54DD6F212993119ECED229 /* SwiftDictionaryCoding-dummy.m in Sources */, 377 | CAE6482F214A7484000D0BAE /* DictionaryDecoder.swift in Sources */, 378 | CAE6482D214A7473000D0BAE /* DictionaryEncoder.swift in Sources */, 379 | ); 380 | runOnlyForDeploymentPostprocessing = 0; 381 | }; 382 | 75030A7CC05DDEE18081CBF3C6A65437 /* Sources */ = { 383 | isa = PBXSourcesBuildPhase; 384 | buildActionMask = 2147483647; 385 | files = ( 386 | A8C523B9615BCC2A57CC95896002DA4D /* Pods-SwiftDictionaryCoding_Example-dummy.m in Sources */, 387 | ); 388 | runOnlyForDeploymentPostprocessing = 0; 389 | }; 390 | 83DC3A41AF7F2B481FA89B4A148B2154 /* Sources */ = { 391 | isa = PBXSourcesBuildPhase; 392 | buildActionMask = 2147483647; 393 | files = ( 394 | F21CE439BC11887765A3AE253D710134 /* Pods-SwiftDictionaryCoding_Tests-dummy.m in Sources */, 395 | ); 396 | runOnlyForDeploymentPostprocessing = 0; 397 | }; 398 | /* End PBXSourcesBuildPhase section */ 399 | 400 | /* Begin PBXTargetDependency section */ 401 | 66AE143C056EA98DD270F6317F0D7691 /* PBXTargetDependency */ = { 402 | isa = PBXTargetDependency; 403 | name = "Pods-SwiftDictionaryCoding_Example"; 404 | target = 2559DC847AC6D31AD6330C335A5C3B59 /* Pods-SwiftDictionaryCoding_Example */; 405 | targetProxy = 5243EE2FC18DBE02C942A2CBB0CD4446 /* PBXContainerItemProxy */; 406 | }; 407 | 7750BEFB28C54251626F77566B4A6FD6 /* PBXTargetDependency */ = { 408 | isa = PBXTargetDependency; 409 | name = SwiftDictionaryCoding; 410 | target = C394B5AAEAEE43A88EFE06D09E0CCCD7 /* SwiftDictionaryCoding */; 411 | targetProxy = 11A10F545E550DBB8380DD4D98C890AD /* PBXContainerItemProxy */; 412 | }; 413 | /* End PBXTargetDependency section */ 414 | 415 | /* Begin XCBuildConfiguration section */ 416 | 0E8360084B8083EFC8D59FEA46210978 /* Debug */ = { 417 | isa = XCBuildConfiguration; 418 | baseConfigurationReference = 9A72C8EE7E3AC02FA7F99FE54E8A202D /* SwiftDictionaryCoding.xcconfig */; 419 | buildSettings = { 420 | CODE_SIGN_IDENTITY = ""; 421 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 422 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 423 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 424 | CURRENT_PROJECT_VERSION = 1; 425 | DEFINES_MODULE = YES; 426 | DYLIB_COMPATIBILITY_VERSION = 1; 427 | DYLIB_CURRENT_VERSION = 1; 428 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 429 | GCC_PREFIX_HEADER = "Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding-prefix.pch"; 430 | INFOPLIST_FILE = "Target Support Files/SwiftDictionaryCoding/Info.plist"; 431 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 432 | LD_RUNPATH_SEARCH_PATHS = ( 433 | "$(inherited)", 434 | "@executable_path/Frameworks", 435 | "@loader_path/Frameworks", 436 | ); 437 | MODULEMAP_FILE = "Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding.modulemap"; 438 | PRODUCT_MODULE_NAME = SwiftDictionaryCoding; 439 | PRODUCT_NAME = SwiftDictionaryCoding; 440 | SDKROOT = iphoneos; 441 | SKIP_INSTALL = YES; 442 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 443 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 444 | SWIFT_VERSION = 4.0; 445 | TARGETED_DEVICE_FAMILY = "1,2"; 446 | VERSIONING_SYSTEM = "apple-generic"; 447 | VERSION_INFO_PREFIX = ""; 448 | }; 449 | name = Debug; 450 | }; 451 | 116E0909D8DA7BF6182F51F66D6FDDDC /* Release */ = { 452 | isa = XCBuildConfiguration; 453 | baseConfigurationReference = 9A72C8EE7E3AC02FA7F99FE54E8A202D /* SwiftDictionaryCoding.xcconfig */; 454 | buildSettings = { 455 | CODE_SIGN_IDENTITY = ""; 456 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 457 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 458 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 459 | CURRENT_PROJECT_VERSION = 1; 460 | DEFINES_MODULE = YES; 461 | DYLIB_COMPATIBILITY_VERSION = 1; 462 | DYLIB_CURRENT_VERSION = 1; 463 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 464 | GCC_PREFIX_HEADER = "Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding-prefix.pch"; 465 | INFOPLIST_FILE = "Target Support Files/SwiftDictionaryCoding/Info.plist"; 466 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 467 | LD_RUNPATH_SEARCH_PATHS = ( 468 | "$(inherited)", 469 | "@executable_path/Frameworks", 470 | "@loader_path/Frameworks", 471 | ); 472 | MODULEMAP_FILE = "Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding.modulemap"; 473 | PRODUCT_MODULE_NAME = SwiftDictionaryCoding; 474 | PRODUCT_NAME = SwiftDictionaryCoding; 475 | SDKROOT = iphoneos; 476 | SKIP_INSTALL = YES; 477 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 478 | SWIFT_COMPILATION_MODE = wholemodule; 479 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 480 | SWIFT_VERSION = 4.0; 481 | TARGETED_DEVICE_FAMILY = "1,2"; 482 | VALIDATE_PRODUCT = YES; 483 | VERSIONING_SYSTEM = "apple-generic"; 484 | VERSION_INFO_PREFIX = ""; 485 | }; 486 | name = Release; 487 | }; 488 | 56A05ADD3BABDA1B56D1F979845809B1 /* Release */ = { 489 | isa = XCBuildConfiguration; 490 | buildSettings = { 491 | ALWAYS_SEARCH_USER_PATHS = NO; 492 | CLANG_ANALYZER_NONNULL = YES; 493 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 494 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 495 | CLANG_CXX_LIBRARY = "libc++"; 496 | CLANG_ENABLE_MODULES = YES; 497 | CLANG_ENABLE_OBJC_ARC = YES; 498 | CLANG_ENABLE_OBJC_WEAK = YES; 499 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 500 | CLANG_WARN_BOOL_CONVERSION = YES; 501 | CLANG_WARN_COMMA = YES; 502 | CLANG_WARN_CONSTANT_CONVERSION = YES; 503 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 504 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 505 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 506 | CLANG_WARN_EMPTY_BODY = YES; 507 | CLANG_WARN_ENUM_CONVERSION = YES; 508 | CLANG_WARN_INFINITE_RECURSION = YES; 509 | CLANG_WARN_INT_CONVERSION = YES; 510 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 511 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 512 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 513 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 514 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 515 | CLANG_WARN_STRICT_PROTOTYPES = YES; 516 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 517 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 518 | CLANG_WARN_UNREACHABLE_CODE = YES; 519 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 520 | CODE_SIGNING_ALLOWED = NO; 521 | CODE_SIGNING_REQUIRED = NO; 522 | COPY_PHASE_STRIP = NO; 523 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 524 | ENABLE_NS_ASSERTIONS = NO; 525 | ENABLE_STRICT_OBJC_MSGSEND = YES; 526 | GCC_C_LANGUAGE_STANDARD = gnu11; 527 | GCC_NO_COMMON_BLOCKS = YES; 528 | GCC_PREPROCESSOR_DEFINITIONS = ( 529 | "POD_CONFIGURATION_RELEASE=1", 530 | "$(inherited)", 531 | ); 532 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 533 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 534 | GCC_WARN_UNDECLARED_SELECTOR = YES; 535 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 536 | GCC_WARN_UNUSED_FUNCTION = YES; 537 | GCC_WARN_UNUSED_VARIABLE = YES; 538 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 539 | MTL_ENABLE_DEBUG_INFO = NO; 540 | MTL_FAST_MATH = YES; 541 | PRODUCT_NAME = "$(TARGET_NAME)"; 542 | STRIP_INSTALLED_PRODUCT = NO; 543 | SWIFT_COMPILATION_MODE = wholemodule; 544 | SYMROOT = "${SRCROOT}/../build"; 545 | }; 546 | name = Release; 547 | }; 548 | A2A24083BF17EB9754A21AC76654B2C8 /* Release */ = { 549 | isa = XCBuildConfiguration; 550 | baseConfigurationReference = 779C64DE347EF0412F326CCC2999AEDD /* Pods-SwiftDictionaryCoding_Example.release.xcconfig */; 551 | buildSettings = { 552 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 553 | CODE_SIGN_IDENTITY = ""; 554 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 555 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 556 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 557 | CURRENT_PROJECT_VERSION = 1; 558 | DEFINES_MODULE = YES; 559 | DYLIB_COMPATIBILITY_VERSION = 1; 560 | DYLIB_CURRENT_VERSION = 1; 561 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 562 | INFOPLIST_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Example/Info.plist"; 563 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 564 | LD_RUNPATH_SEARCH_PATHS = ( 565 | "$(inherited)", 566 | "@executable_path/Frameworks", 567 | "@loader_path/Frameworks", 568 | ); 569 | MACH_O_TYPE = staticlib; 570 | MODULEMAP_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.modulemap"; 571 | OTHER_LDFLAGS = ""; 572 | OTHER_LIBTOOLFLAGS = ""; 573 | PODS_ROOT = "$(SRCROOT)"; 574 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 575 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 576 | SDKROOT = iphoneos; 577 | SKIP_INSTALL = YES; 578 | SWIFT_COMPILATION_MODE = wholemodule; 579 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 580 | TARGETED_DEVICE_FAMILY = "1,2"; 581 | VALIDATE_PRODUCT = YES; 582 | VERSIONING_SYSTEM = "apple-generic"; 583 | VERSION_INFO_PREFIX = ""; 584 | }; 585 | name = Release; 586 | }; 587 | A5A7F8CBDA9B6F31FCA9FC1E030A9664 /* Debug */ = { 588 | isa = XCBuildConfiguration; 589 | baseConfigurationReference = DB455219836F32897932254203A89B07 /* Pods-SwiftDictionaryCoding_Example.debug.xcconfig */; 590 | buildSettings = { 591 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 592 | CODE_SIGN_IDENTITY = ""; 593 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 594 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 595 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 596 | CURRENT_PROJECT_VERSION = 1; 597 | DEFINES_MODULE = YES; 598 | DYLIB_COMPATIBILITY_VERSION = 1; 599 | DYLIB_CURRENT_VERSION = 1; 600 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 601 | INFOPLIST_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Example/Info.plist"; 602 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 603 | LD_RUNPATH_SEARCH_PATHS = ( 604 | "$(inherited)", 605 | "@executable_path/Frameworks", 606 | "@loader_path/Frameworks", 607 | ); 608 | MACH_O_TYPE = staticlib; 609 | MODULEMAP_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.modulemap"; 610 | OTHER_LDFLAGS = ""; 611 | OTHER_LIBTOOLFLAGS = ""; 612 | PODS_ROOT = "$(SRCROOT)"; 613 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 614 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 615 | SDKROOT = iphoneos; 616 | SKIP_INSTALL = YES; 617 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 618 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 619 | TARGETED_DEVICE_FAMILY = "1,2"; 620 | VERSIONING_SYSTEM = "apple-generic"; 621 | VERSION_INFO_PREFIX = ""; 622 | }; 623 | name = Debug; 624 | }; 625 | BEFDB93BF207328A04F1220475D02C3B /* Debug */ = { 626 | isa = XCBuildConfiguration; 627 | buildSettings = { 628 | ALWAYS_SEARCH_USER_PATHS = NO; 629 | CLANG_ANALYZER_NONNULL = YES; 630 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 631 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 632 | CLANG_CXX_LIBRARY = "libc++"; 633 | CLANG_ENABLE_MODULES = YES; 634 | CLANG_ENABLE_OBJC_ARC = YES; 635 | CLANG_ENABLE_OBJC_WEAK = YES; 636 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 637 | CLANG_WARN_BOOL_CONVERSION = YES; 638 | CLANG_WARN_COMMA = YES; 639 | CLANG_WARN_CONSTANT_CONVERSION = YES; 640 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 641 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 642 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 643 | CLANG_WARN_EMPTY_BODY = YES; 644 | CLANG_WARN_ENUM_CONVERSION = YES; 645 | CLANG_WARN_INFINITE_RECURSION = YES; 646 | CLANG_WARN_INT_CONVERSION = YES; 647 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 648 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 649 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 650 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 651 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 652 | CLANG_WARN_STRICT_PROTOTYPES = YES; 653 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 654 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 655 | CLANG_WARN_UNREACHABLE_CODE = YES; 656 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 657 | CODE_SIGNING_ALLOWED = NO; 658 | CODE_SIGNING_REQUIRED = NO; 659 | COPY_PHASE_STRIP = NO; 660 | DEBUG_INFORMATION_FORMAT = dwarf; 661 | ENABLE_STRICT_OBJC_MSGSEND = YES; 662 | ENABLE_TESTABILITY = YES; 663 | GCC_C_LANGUAGE_STANDARD = gnu11; 664 | GCC_DYNAMIC_NO_PIC = NO; 665 | GCC_NO_COMMON_BLOCKS = YES; 666 | GCC_OPTIMIZATION_LEVEL = 0; 667 | GCC_PREPROCESSOR_DEFINITIONS = ( 668 | "POD_CONFIGURATION_DEBUG=1", 669 | "DEBUG=1", 670 | "$(inherited)", 671 | ); 672 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 673 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 674 | GCC_WARN_UNDECLARED_SELECTOR = YES; 675 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 676 | GCC_WARN_UNUSED_FUNCTION = YES; 677 | GCC_WARN_UNUSED_VARIABLE = YES; 678 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 679 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 680 | MTL_FAST_MATH = YES; 681 | ONLY_ACTIVE_ARCH = YES; 682 | PRODUCT_NAME = "$(TARGET_NAME)"; 683 | STRIP_INSTALLED_PRODUCT = NO; 684 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 685 | SYMROOT = "${SRCROOT}/../build"; 686 | }; 687 | name = Debug; 688 | }; 689 | C3CD2E846C21F526EF7DF34F49AB4509 /* Debug */ = { 690 | isa = XCBuildConfiguration; 691 | baseConfigurationReference = 415AFB4A5D8CBD6A623255FCCFA56EE0 /* Pods-SwiftDictionaryCoding_Tests.debug.xcconfig */; 692 | buildSettings = { 693 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 694 | CODE_SIGN_IDENTITY = ""; 695 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 696 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 697 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 698 | CURRENT_PROJECT_VERSION = 1; 699 | DEFINES_MODULE = YES; 700 | DYLIB_COMPATIBILITY_VERSION = 1; 701 | DYLIB_CURRENT_VERSION = 1; 702 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 703 | INFOPLIST_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Tests/Info.plist"; 704 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 705 | LD_RUNPATH_SEARCH_PATHS = ( 706 | "$(inherited)", 707 | "@executable_path/Frameworks", 708 | "@loader_path/Frameworks", 709 | ); 710 | MACH_O_TYPE = staticlib; 711 | MODULEMAP_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.modulemap"; 712 | OTHER_LDFLAGS = ""; 713 | OTHER_LIBTOOLFLAGS = ""; 714 | PODS_ROOT = "$(SRCROOT)"; 715 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 716 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 717 | SDKROOT = iphoneos; 718 | SKIP_INSTALL = YES; 719 | TARGETED_DEVICE_FAMILY = "1,2"; 720 | VERSIONING_SYSTEM = "apple-generic"; 721 | VERSION_INFO_PREFIX = ""; 722 | }; 723 | name = Debug; 724 | }; 725 | D298B8824083B9A0B07C95B2ECEC26C8 /* Release */ = { 726 | isa = XCBuildConfiguration; 727 | baseConfigurationReference = 00B5AB4E971CE7086F6F16E29FB87ABD /* Pods-SwiftDictionaryCoding_Tests.release.xcconfig */; 728 | buildSettings = { 729 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 730 | CODE_SIGN_IDENTITY = ""; 731 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 732 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 733 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 734 | CURRENT_PROJECT_VERSION = 1; 735 | DEFINES_MODULE = YES; 736 | DYLIB_COMPATIBILITY_VERSION = 1; 737 | DYLIB_CURRENT_VERSION = 1; 738 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 739 | INFOPLIST_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Tests/Info.plist"; 740 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 741 | LD_RUNPATH_SEARCH_PATHS = ( 742 | "$(inherited)", 743 | "@executable_path/Frameworks", 744 | "@loader_path/Frameworks", 745 | ); 746 | MACH_O_TYPE = staticlib; 747 | MODULEMAP_FILE = "Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.modulemap"; 748 | OTHER_LDFLAGS = ""; 749 | OTHER_LIBTOOLFLAGS = ""; 750 | PODS_ROOT = "$(SRCROOT)"; 751 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 752 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 753 | SDKROOT = iphoneos; 754 | SKIP_INSTALL = YES; 755 | TARGETED_DEVICE_FAMILY = "1,2"; 756 | VALIDATE_PRODUCT = YES; 757 | VERSIONING_SYSTEM = "apple-generic"; 758 | VERSION_INFO_PREFIX = ""; 759 | }; 760 | name = Release; 761 | }; 762 | /* End XCBuildConfiguration section */ 763 | 764 | /* Begin XCConfigurationList section */ 765 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 766 | isa = XCConfigurationList; 767 | buildConfigurations = ( 768 | BEFDB93BF207328A04F1220475D02C3B /* Debug */, 769 | 56A05ADD3BABDA1B56D1F979845809B1 /* Release */, 770 | ); 771 | defaultConfigurationIsVisible = 0; 772 | defaultConfigurationName = Release; 773 | }; 774 | 452C0EC7C24A71CE1E04EC9CD40F03CD /* Build configuration list for PBXNativeTarget "Pods-SwiftDictionaryCoding_Tests" */ = { 775 | isa = XCConfigurationList; 776 | buildConfigurations = ( 777 | C3CD2E846C21F526EF7DF34F49AB4509 /* Debug */, 778 | D298B8824083B9A0B07C95B2ECEC26C8 /* Release */, 779 | ); 780 | defaultConfigurationIsVisible = 0; 781 | defaultConfigurationName = Release; 782 | }; 783 | 90129C5AC9FB85F2669CB7696D1E094F /* Build configuration list for PBXNativeTarget "SwiftDictionaryCoding" */ = { 784 | isa = XCConfigurationList; 785 | buildConfigurations = ( 786 | 0E8360084B8083EFC8D59FEA46210978 /* Debug */, 787 | 116E0909D8DA7BF6182F51F66D6FDDDC /* Release */, 788 | ); 789 | defaultConfigurationIsVisible = 0; 790 | defaultConfigurationName = Release; 791 | }; 792 | DE5499157BFE1D8E488037FD26197D64 /* Build configuration list for PBXNativeTarget "Pods-SwiftDictionaryCoding_Example" */ = { 793 | isa = XCConfigurationList; 794 | buildConfigurations = ( 795 | A5A7F8CBDA9B6F31FCA9FC1E030A9664 /* Debug */, 796 | A2A24083BF17EB9754A21AC76654B2C8 /* Release */, 797 | ); 798 | defaultConfigurationIsVisible = 0; 799 | defaultConfigurationName = Release; 800 | }; 801 | /* End XCConfigurationList section */ 802 | }; 803 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 804 | } 805 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## SwiftDictionaryCoding 5 | 6 | Copyright (c) 2018 ashleymills 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2018 ashleymills <ashleymills@mac.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | SwiftDictionaryCoding 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SwiftDictionaryCoding_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SwiftDictionaryCoding_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 80 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | 145 | if [[ "$CONFIGURATION" == "Debug" ]]; then 146 | install_framework "${BUILT_PRODUCTS_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework" 147 | fi 148 | if [[ "$CONFIGURATION" == "Release" ]]; then 149 | install_framework "${BUILT_PRODUCTS_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework" 150 | fi 151 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 152 | wait 153 | fi 154 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | 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}" || true 60 | 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} 61 | ;; 62 | *.xib) 63 | 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}" || true 64 | 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} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | 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}" 115 | else 116 | 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}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_SwiftDictionaryCoding_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SwiftDictionaryCoding_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "SwiftDictionaryCoding" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SwiftDictionaryCoding_Example { 2 | umbrella header "Pods-SwiftDictionaryCoding_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "SwiftDictionaryCoding" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SwiftDictionaryCoding_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SwiftDictionaryCoding_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 7 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # frameworks to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 14 | 15 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 16 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 17 | 18 | # Used as a return value for each invocation of `strip_invalid_archs` function. 19 | STRIP_BINARY_RETVAL=0 20 | 21 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 22 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 23 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 24 | 25 | # Copies and strips a vendored framework 26 | install_framework() 27 | { 28 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 29 | local source="${BUILT_PRODUCTS_DIR}/$1" 30 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 31 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 32 | elif [ -r "$1" ]; then 33 | local source="$1" 34 | fi 35 | 36 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 37 | 38 | if [ -L "${source}" ]; then 39 | echo "Symlinked..." 40 | source="$(readlink "${source}")" 41 | fi 42 | 43 | # Use filter instead of exclude so missing patterns don't throw errors. 44 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 45 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 46 | 47 | local basename 48 | basename="$(basename -s .framework "$1")" 49 | binary="${destination}/${basename}.framework/${basename}" 50 | if ! [ -r "$binary" ]; then 51 | binary="${destination}/${basename}" 52 | fi 53 | 54 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 55 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 56 | strip_invalid_archs "$binary" 57 | fi 58 | 59 | # Resign the code if required by the build settings to avoid unstable apps 60 | code_sign_if_enabled "${destination}/$(basename "$1")" 61 | 62 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 63 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 64 | local swift_runtime_libs 65 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 66 | for lib in $swift_runtime_libs; do 67 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 68 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 69 | code_sign_if_enabled "${destination}/${lib}" 70 | done 71 | fi 72 | } 73 | 74 | # Copies and strips a vendored dSYM 75 | install_dsym() { 76 | local source="$1" 77 | if [ -r "$source" ]; then 78 | # Copy the dSYM into a the targets temp dir. 79 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 80 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 81 | 82 | local basename 83 | basename="$(basename -s .framework.dSYM "$source")" 84 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 85 | 86 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 87 | if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then 88 | strip_invalid_archs "$binary" 89 | fi 90 | 91 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 92 | # Move the stripped file into its final destination. 93 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 94 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 95 | else 96 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 97 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 98 | fi 99 | fi 100 | } 101 | 102 | # Signs a framework with the provided identity 103 | code_sign_if_enabled() { 104 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 105 | # Use the current code_sign_identitiy 106 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 107 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 108 | 109 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 110 | code_sign_cmd="$code_sign_cmd &" 111 | fi 112 | echo "$code_sign_cmd" 113 | eval "$code_sign_cmd" 114 | fi 115 | } 116 | 117 | # Strip invalid architectures 118 | strip_invalid_archs() { 119 | binary="$1" 120 | # Get architectures for current target binary 121 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 122 | # Intersect them with the architectures we are building for 123 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 124 | # If there are no archs supported by this binary then warn the user 125 | if [[ -z "$intersected_archs" ]]; then 126 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 127 | STRIP_BINARY_RETVAL=0 128 | return 129 | fi 130 | stripped="" 131 | for arch in $binary_archs; do 132 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 133 | # Strip non-valid architectures in-place 134 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 135 | stripped="$stripped $arch" 136 | fi 137 | done 138 | if [[ "$stripped" ]]; then 139 | echo "Stripped $binary of architectures:$stripped" 140 | fi 141 | STRIP_BINARY_RETVAL=1 142 | } 143 | 144 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 145 | wait 146 | fi 147 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then 7 | # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy 8 | # resources to, so exit 0 (signalling the script phase was successful). 9 | exit 0 10 | fi 11 | 12 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 13 | 14 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 15 | > "$RESOURCES_TO_COPY" 16 | 17 | XCASSET_FILES=() 18 | 19 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 20 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 21 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 22 | 23 | case "${TARGETED_DEVICE_FAMILY:-}" in 24 | 1,2) 25 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 26 | ;; 27 | 1) 28 | TARGET_DEVICE_ARGS="--target-device iphone" 29 | ;; 30 | 2) 31 | TARGET_DEVICE_ARGS="--target-device ipad" 32 | ;; 33 | 3) 34 | TARGET_DEVICE_ARGS="--target-device tv" 35 | ;; 36 | 4) 37 | TARGET_DEVICE_ARGS="--target-device watch" 38 | ;; 39 | *) 40 | TARGET_DEVICE_ARGS="--target-device mac" 41 | ;; 42 | esac 43 | 44 | install_resource() 45 | { 46 | if [[ "$1" = /* ]] ; then 47 | RESOURCE_PATH="$1" 48 | else 49 | RESOURCE_PATH="${PODS_ROOT}/$1" 50 | fi 51 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 52 | cat << EOM 53 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 54 | EOM 55 | exit 1 56 | fi 57 | case $RESOURCE_PATH in 58 | *.storyboard) 59 | 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}" || true 60 | 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} 61 | ;; 62 | *.xib) 63 | 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}" || true 64 | 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} 65 | ;; 66 | *.framework) 67 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 68 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 69 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 70 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 71 | ;; 72 | *.xcdatamodel) 73 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 74 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 75 | ;; 76 | *.xcdatamodeld) 77 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 78 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 79 | ;; 80 | *.xcmappingmodel) 81 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 82 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 83 | ;; 84 | *.xcassets) 85 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 86 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 87 | ;; 88 | *) 89 | echo "$RESOURCE_PATH" || true 90 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 91 | ;; 92 | esac 93 | } 94 | 95 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 96 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 97 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 98 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 99 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 100 | fi 101 | rm -f "$RESOURCES_TO_COPY" 102 | 103 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] 104 | then 105 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 106 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 107 | while read line; do 108 | if [[ $line != "${PODS_ROOT}*" ]]; then 109 | XCASSET_FILES+=("$line") 110 | fi 111 | done <<<"$OTHER_XCASSETS" 112 | 113 | if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then 114 | 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}" 115 | else 116 | 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}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" 117 | fi 118 | fi 119 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_SwiftDictionaryCoding_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SwiftDictionaryCoding_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework/Headers" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SwiftDictionaryCoding_Tests { 2 | umbrella header "Pods-SwiftDictionaryCoding_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework/Headers" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftDictionaryCoding/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftDictionaryCoding : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftDictionaryCoding 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double SwiftDictionaryCodingVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SwiftDictionaryCodingVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftDictionaryCoding { 2 | umbrella header "SwiftDictionaryCoding-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SwiftDictionaryCoding/SwiftDictionaryCoding.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftDictionaryCoding 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0910FB378E507064E2AFAE3F /* Pods_SwiftDictionaryCoding_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 005DFF9301478C2460EA00B8 /* Pods_SwiftDictionaryCoding_Tests.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | CAE64831214A74ED000D0BAE /* DicionaryEncoderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE64830214A74ED000D0BAE /* DicionaryEncoderTests.swift */; }; 17 | CAE64833214A7500000D0BAE /* DicionaryDecoderTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAE64832214A7500000D0BAE /* DicionaryDecoderTests.swift */; }; 18 | FB927FF6428DAF35E6B8AAD2 /* Pods_SwiftDictionaryCoding_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B1476BABBF9A0F23C2EDACD3 /* Pods_SwiftDictionaryCoding_Example.framework */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 27 | remoteInfo = SwiftDictionaryCoding; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 005DFF9301478C2460EA00B8 /* Pods_SwiftDictionaryCoding_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftDictionaryCoding_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 3BE77658DBB8C603E37360F2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 34 | 4CBF4BB6EBCB63D047DBB981 /* Pods-SwiftDictionaryCoding_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftDictionaryCoding_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.release.xcconfig"; sourceTree = ""; }; 35 | 607FACD01AFB9204008FA782 /* SwiftDictionaryCoding_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftDictionaryCoding_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 36 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 37 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 39 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 40 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 41 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 42 | 607FACE51AFB9204008FA782 /* SwiftDictionaryCoding_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftDictionaryCoding_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 93798DD74CEB6EBD43F242E2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 45 | 9AA9BB4F929381AD9026738B /* Pods-SwiftDictionaryCoding_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftDictionaryCoding_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftDictionaryCoding_Tests/Pods-SwiftDictionaryCoding_Tests.debug.xcconfig"; sourceTree = ""; }; 46 | B1476BABBF9A0F23C2EDACD3 /* Pods_SwiftDictionaryCoding_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftDictionaryCoding_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | CAE64830214A74ED000D0BAE /* DicionaryEncoderTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DicionaryEncoderTests.swift; sourceTree = ""; }; 48 | CAE64832214A7500000D0BAE /* DicionaryDecoderTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DicionaryDecoderTests.swift; sourceTree = ""; }; 49 | CB2CA21362CE3866D176FAA7 /* Pods-SwiftDictionaryCoding_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftDictionaryCoding_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.release.xcconfig"; sourceTree = ""; }; 50 | D01899E7FAC55FBB29D7FE8F /* SwiftDictionaryCoding.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = SwiftDictionaryCoding.podspec; path = ../SwiftDictionaryCoding.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51 | F337456F610D9D49A0234F25 /* Pods-SwiftDictionaryCoding_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftDictionaryCoding_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example.debug.xcconfig"; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | FB927FF6428DAF35E6B8AAD2 /* Pods_SwiftDictionaryCoding_Example.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 64 | isa = PBXFrameworksBuildPhase; 65 | buildActionMask = 2147483647; 66 | files = ( 67 | 0910FB378E507064E2AFAE3F /* Pods_SwiftDictionaryCoding_Tests.framework in Frameworks */, 68 | ); 69 | runOnlyForDeploymentPostprocessing = 0; 70 | }; 71 | /* End PBXFrameworksBuildPhase section */ 72 | 73 | /* Begin PBXGroup section */ 74 | 07CE2E94D36F79DBED160BB8 /* Frameworks */ = { 75 | isa = PBXGroup; 76 | children = ( 77 | B1476BABBF9A0F23C2EDACD3 /* Pods_SwiftDictionaryCoding_Example.framework */, 78 | 005DFF9301478C2460EA00B8 /* Pods_SwiftDictionaryCoding_Tests.framework */, 79 | ); 80 | name = Frameworks; 81 | sourceTree = ""; 82 | }; 83 | 607FACC71AFB9204008FA782 = { 84 | isa = PBXGroup; 85 | children = ( 86 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 87 | 607FACD21AFB9204008FA782 /* Example for SwiftDictionaryCoding */, 88 | 607FACE81AFB9204008FA782 /* Tests */, 89 | 607FACD11AFB9204008FA782 /* Products */, 90 | E89376CFD0C5FE295FC6C2B0 /* Pods */, 91 | 07CE2E94D36F79DBED160BB8 /* Frameworks */, 92 | ); 93 | sourceTree = ""; 94 | }; 95 | 607FACD11AFB9204008FA782 /* Products */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 607FACD01AFB9204008FA782 /* SwiftDictionaryCoding_Example.app */, 99 | 607FACE51AFB9204008FA782 /* SwiftDictionaryCoding_Tests.xctest */, 100 | ); 101 | name = Products; 102 | sourceTree = ""; 103 | }; 104 | 607FACD21AFB9204008FA782 /* Example for SwiftDictionaryCoding */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 108 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 109 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 110 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 111 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 112 | 607FACD31AFB9204008FA782 /* Supporting Files */, 113 | ); 114 | name = "Example for SwiftDictionaryCoding"; 115 | path = SwiftDictionaryCoding; 116 | sourceTree = ""; 117 | }; 118 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 607FACD41AFB9204008FA782 /* Info.plist */, 122 | ); 123 | name = "Supporting Files"; 124 | sourceTree = ""; 125 | }; 126 | 607FACE81AFB9204008FA782 /* Tests */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | CAE64830214A74ED000D0BAE /* DicionaryEncoderTests.swift */, 130 | CAE64832214A7500000D0BAE /* DicionaryDecoderTests.swift */, 131 | 607FACE91AFB9204008FA782 /* Supporting Files */, 132 | ); 133 | path = Tests; 134 | sourceTree = ""; 135 | }; 136 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 137 | isa = PBXGroup; 138 | children = ( 139 | 607FACEA1AFB9204008FA782 /* Info.plist */, 140 | ); 141 | name = "Supporting Files"; 142 | sourceTree = ""; 143 | }; 144 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | D01899E7FAC55FBB29D7FE8F /* SwiftDictionaryCoding.podspec */, 148 | 93798DD74CEB6EBD43F242E2 /* README.md */, 149 | 3BE77658DBB8C603E37360F2 /* LICENSE */, 150 | ); 151 | name = "Podspec Metadata"; 152 | sourceTree = ""; 153 | }; 154 | E89376CFD0C5FE295FC6C2B0 /* Pods */ = { 155 | isa = PBXGroup; 156 | children = ( 157 | F337456F610D9D49A0234F25 /* Pods-SwiftDictionaryCoding_Example.debug.xcconfig */, 158 | CB2CA21362CE3866D176FAA7 /* Pods-SwiftDictionaryCoding_Example.release.xcconfig */, 159 | 9AA9BB4F929381AD9026738B /* Pods-SwiftDictionaryCoding_Tests.debug.xcconfig */, 160 | 4CBF4BB6EBCB63D047DBB981 /* Pods-SwiftDictionaryCoding_Tests.release.xcconfig */, 161 | ); 162 | name = Pods; 163 | sourceTree = ""; 164 | }; 165 | /* End PBXGroup section */ 166 | 167 | /* Begin PBXNativeTarget section */ 168 | 607FACCF1AFB9204008FA782 /* SwiftDictionaryCoding_Example */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SwiftDictionaryCoding_Example" */; 171 | buildPhases = ( 172 | 723572E97350702EF006BB0D /* [CP] Check Pods Manifest.lock */, 173 | 607FACCC1AFB9204008FA782 /* Sources */, 174 | 607FACCD1AFB9204008FA782 /* Frameworks */, 175 | 607FACCE1AFB9204008FA782 /* Resources */, 176 | 5C7CA53278DB0AF200868D08 /* [CP] Embed Pods Frameworks */, 177 | ); 178 | buildRules = ( 179 | ); 180 | dependencies = ( 181 | ); 182 | name = SwiftDictionaryCoding_Example; 183 | productName = SwiftDictionaryCoding; 184 | productReference = 607FACD01AFB9204008FA782 /* SwiftDictionaryCoding_Example.app */; 185 | productType = "com.apple.product-type.application"; 186 | }; 187 | 607FACE41AFB9204008FA782 /* SwiftDictionaryCoding_Tests */ = { 188 | isa = PBXNativeTarget; 189 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SwiftDictionaryCoding_Tests" */; 190 | buildPhases = ( 191 | F69FC6DF789DBB2C68C9C5A6 /* [CP] Check Pods Manifest.lock */, 192 | 607FACE11AFB9204008FA782 /* Sources */, 193 | 607FACE21AFB9204008FA782 /* Frameworks */, 194 | 607FACE31AFB9204008FA782 /* Resources */, 195 | ); 196 | buildRules = ( 197 | ); 198 | dependencies = ( 199 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 200 | ); 201 | name = SwiftDictionaryCoding_Tests; 202 | productName = Tests; 203 | productReference = 607FACE51AFB9204008FA782 /* SwiftDictionaryCoding_Tests.xctest */; 204 | productType = "com.apple.product-type.bundle.unit-test"; 205 | }; 206 | /* End PBXNativeTarget section */ 207 | 208 | /* Begin PBXProject section */ 209 | 607FACC81AFB9204008FA782 /* Project object */ = { 210 | isa = PBXProject; 211 | attributes = { 212 | LastSwiftUpdateCheck = 0830; 213 | LastUpgradeCheck = 0940; 214 | ORGANIZATIONNAME = CocoaPods; 215 | TargetAttributes = { 216 | 607FACCF1AFB9204008FA782 = { 217 | CreatedOnToolsVersion = 6.3.1; 218 | LastSwiftMigration = 0900; 219 | }; 220 | 607FACE41AFB9204008FA782 = { 221 | CreatedOnToolsVersion = 6.3.1; 222 | LastSwiftMigration = 0940; 223 | TestTargetID = 607FACCF1AFB9204008FA782; 224 | }; 225 | }; 226 | }; 227 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "SwiftDictionaryCoding" */; 228 | compatibilityVersion = "Xcode 9.3"; 229 | developmentRegion = English; 230 | hasScannedForEncodings = 0; 231 | knownRegions = ( 232 | en, 233 | Base, 234 | ); 235 | mainGroup = 607FACC71AFB9204008FA782; 236 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 237 | projectDirPath = ""; 238 | projectRoot = ""; 239 | targets = ( 240 | 607FACCF1AFB9204008FA782 /* SwiftDictionaryCoding_Example */, 241 | 607FACE41AFB9204008FA782 /* SwiftDictionaryCoding_Tests */, 242 | ); 243 | }; 244 | /* End PBXProject section */ 245 | 246 | /* Begin PBXResourcesBuildPhase section */ 247 | 607FACCE1AFB9204008FA782 /* Resources */ = { 248 | isa = PBXResourcesBuildPhase; 249 | buildActionMask = 2147483647; 250 | files = ( 251 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 252 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 253 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | }; 257 | 607FACE31AFB9204008FA782 /* Resources */ = { 258 | isa = PBXResourcesBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | ); 262 | runOnlyForDeploymentPostprocessing = 0; 263 | }; 264 | /* End PBXResourcesBuildPhase section */ 265 | 266 | /* Begin PBXShellScriptBuildPhase section */ 267 | 5C7CA53278DB0AF200868D08 /* [CP] Embed Pods Frameworks */ = { 268 | isa = PBXShellScriptBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | ); 272 | inputPaths = ( 273 | "${SRCROOT}/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-frameworks.sh", 274 | "${BUILT_PRODUCTS_DIR}/SwiftDictionaryCoding/SwiftDictionaryCoding.framework", 275 | ); 276 | name = "[CP] Embed Pods Frameworks"; 277 | outputPaths = ( 278 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftDictionaryCoding.framework", 279 | ); 280 | runOnlyForDeploymentPostprocessing = 0; 281 | shellPath = /bin/sh; 282 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-SwiftDictionaryCoding_Example/Pods-SwiftDictionaryCoding_Example-frameworks.sh\"\n"; 283 | showEnvVarsInLog = 0; 284 | }; 285 | 723572E97350702EF006BB0D /* [CP] Check Pods Manifest.lock */ = { 286 | isa = PBXShellScriptBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | ); 290 | inputPaths = ( 291 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 292 | "${PODS_ROOT}/Manifest.lock", 293 | ); 294 | name = "[CP] Check Pods Manifest.lock"; 295 | outputPaths = ( 296 | "$(DERIVED_FILE_DIR)/Pods-SwiftDictionaryCoding_Example-checkManifestLockResult.txt", 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | shellPath = /bin/sh; 300 | 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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 301 | showEnvVarsInLog = 0; 302 | }; 303 | F69FC6DF789DBB2C68C9C5A6 /* [CP] Check Pods Manifest.lock */ = { 304 | isa = PBXShellScriptBuildPhase; 305 | buildActionMask = 2147483647; 306 | files = ( 307 | ); 308 | inputPaths = ( 309 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 310 | "${PODS_ROOT}/Manifest.lock", 311 | ); 312 | name = "[CP] Check Pods Manifest.lock"; 313 | outputPaths = ( 314 | "$(DERIVED_FILE_DIR)/Pods-SwiftDictionaryCoding_Tests-checkManifestLockResult.txt", 315 | ); 316 | runOnlyForDeploymentPostprocessing = 0; 317 | shellPath = /bin/sh; 318 | 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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 319 | showEnvVarsInLog = 0; 320 | }; 321 | /* End PBXShellScriptBuildPhase section */ 322 | 323 | /* Begin PBXSourcesBuildPhase section */ 324 | 607FACCC1AFB9204008FA782 /* Sources */ = { 325 | isa = PBXSourcesBuildPhase; 326 | buildActionMask = 2147483647; 327 | files = ( 328 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 329 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 330 | ); 331 | runOnlyForDeploymentPostprocessing = 0; 332 | }; 333 | 607FACE11AFB9204008FA782 /* Sources */ = { 334 | isa = PBXSourcesBuildPhase; 335 | buildActionMask = 2147483647; 336 | files = ( 337 | CAE64831214A74ED000D0BAE /* DicionaryEncoderTests.swift in Sources */, 338 | CAE64833214A7500000D0BAE /* DicionaryDecoderTests.swift in Sources */, 339 | ); 340 | runOnlyForDeploymentPostprocessing = 0; 341 | }; 342 | /* End PBXSourcesBuildPhase section */ 343 | 344 | /* Begin PBXTargetDependency section */ 345 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 346 | isa = PBXTargetDependency; 347 | target = 607FACCF1AFB9204008FA782 /* SwiftDictionaryCoding_Example */; 348 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 349 | }; 350 | /* End PBXTargetDependency section */ 351 | 352 | /* Begin PBXVariantGroup section */ 353 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 354 | isa = PBXVariantGroup; 355 | children = ( 356 | 607FACDA1AFB9204008FA782 /* Base */, 357 | ); 358 | name = Main.storyboard; 359 | sourceTree = ""; 360 | }; 361 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 362 | isa = PBXVariantGroup; 363 | children = ( 364 | 607FACDF1AFB9204008FA782 /* Base */, 365 | ); 366 | name = LaunchScreen.xib; 367 | sourceTree = ""; 368 | }; 369 | /* End PBXVariantGroup section */ 370 | 371 | /* Begin XCBuildConfiguration section */ 372 | 607FACED1AFB9204008FA782 /* Debug */ = { 373 | isa = XCBuildConfiguration; 374 | buildSettings = { 375 | ALWAYS_SEARCH_USER_PATHS = NO; 376 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 377 | CLANG_CXX_LIBRARY = "libc++"; 378 | CLANG_ENABLE_MODULES = YES; 379 | CLANG_ENABLE_OBJC_ARC = YES; 380 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 381 | CLANG_WARN_BOOL_CONVERSION = YES; 382 | CLANG_WARN_COMMA = YES; 383 | CLANG_WARN_CONSTANT_CONVERSION = YES; 384 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 385 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 386 | CLANG_WARN_EMPTY_BODY = YES; 387 | CLANG_WARN_ENUM_CONVERSION = YES; 388 | CLANG_WARN_INFINITE_RECURSION = YES; 389 | CLANG_WARN_INT_CONVERSION = YES; 390 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 391 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 392 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 393 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 394 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 395 | CLANG_WARN_STRICT_PROTOTYPES = YES; 396 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 397 | CLANG_WARN_UNREACHABLE_CODE = YES; 398 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 399 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 400 | COPY_PHASE_STRIP = NO; 401 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 402 | ENABLE_STRICT_OBJC_MSGSEND = YES; 403 | ENABLE_TESTABILITY = YES; 404 | GCC_C_LANGUAGE_STANDARD = gnu99; 405 | GCC_DYNAMIC_NO_PIC = NO; 406 | GCC_NO_COMMON_BLOCKS = YES; 407 | GCC_OPTIMIZATION_LEVEL = 0; 408 | GCC_PREPROCESSOR_DEFINITIONS = ( 409 | "DEBUG=1", 410 | "$(inherited)", 411 | ); 412 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 413 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 414 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 415 | GCC_WARN_UNDECLARED_SELECTOR = YES; 416 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 417 | GCC_WARN_UNUSED_FUNCTION = YES; 418 | GCC_WARN_UNUSED_VARIABLE = YES; 419 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 420 | MTL_ENABLE_DEBUG_INFO = YES; 421 | ONLY_ACTIVE_ARCH = YES; 422 | SDKROOT = iphoneos; 423 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 424 | }; 425 | name = Debug; 426 | }; 427 | 607FACEE1AFB9204008FA782 /* Release */ = { 428 | isa = XCBuildConfiguration; 429 | buildSettings = { 430 | ALWAYS_SEARCH_USER_PATHS = NO; 431 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 432 | CLANG_CXX_LIBRARY = "libc++"; 433 | CLANG_ENABLE_MODULES = YES; 434 | CLANG_ENABLE_OBJC_ARC = YES; 435 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 436 | CLANG_WARN_BOOL_CONVERSION = YES; 437 | CLANG_WARN_COMMA = YES; 438 | CLANG_WARN_CONSTANT_CONVERSION = YES; 439 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 440 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 441 | CLANG_WARN_EMPTY_BODY = YES; 442 | CLANG_WARN_ENUM_CONVERSION = YES; 443 | CLANG_WARN_INFINITE_RECURSION = YES; 444 | CLANG_WARN_INT_CONVERSION = YES; 445 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 446 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 447 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 449 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 450 | CLANG_WARN_STRICT_PROTOTYPES = YES; 451 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 452 | CLANG_WARN_UNREACHABLE_CODE = YES; 453 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 454 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 455 | COPY_PHASE_STRIP = NO; 456 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 457 | ENABLE_NS_ASSERTIONS = NO; 458 | ENABLE_STRICT_OBJC_MSGSEND = YES; 459 | GCC_C_LANGUAGE_STANDARD = gnu99; 460 | GCC_NO_COMMON_BLOCKS = YES; 461 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 462 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 463 | GCC_WARN_UNDECLARED_SELECTOR = YES; 464 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 465 | GCC_WARN_UNUSED_FUNCTION = YES; 466 | GCC_WARN_UNUSED_VARIABLE = YES; 467 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 468 | MTL_ENABLE_DEBUG_INFO = NO; 469 | SDKROOT = iphoneos; 470 | SWIFT_COMPILATION_MODE = wholemodule; 471 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 607FACF01AFB9204008FA782 /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = F337456F610D9D49A0234F25 /* Pods-SwiftDictionaryCoding_Example.debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | INFOPLIST_FILE = SwiftDictionaryCoding/Info.plist; 482 | LD_RUNPATH_SEARCH_PATHS = ( 483 | "$(inherited)", 484 | "@executable_path/Frameworks", 485 | ); 486 | MODULE_NAME = ExampleApp; 487 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 488 | PRODUCT_NAME = "$(TARGET_NAME)"; 489 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 490 | SWIFT_VERSION = 4.0; 491 | }; 492 | name = Debug; 493 | }; 494 | 607FACF11AFB9204008FA782 /* Release */ = { 495 | isa = XCBuildConfiguration; 496 | baseConfigurationReference = CB2CA21362CE3866D176FAA7 /* Pods-SwiftDictionaryCoding_Example.release.xcconfig */; 497 | buildSettings = { 498 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 499 | INFOPLIST_FILE = SwiftDictionaryCoding/Info.plist; 500 | LD_RUNPATH_SEARCH_PATHS = ( 501 | "$(inherited)", 502 | "@executable_path/Frameworks", 503 | ); 504 | MODULE_NAME = ExampleApp; 505 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 508 | SWIFT_VERSION = 4.0; 509 | }; 510 | name = Release; 511 | }; 512 | 607FACF31AFB9204008FA782 /* Debug */ = { 513 | isa = XCBuildConfiguration; 514 | baseConfigurationReference = 9AA9BB4F929381AD9026738B /* Pods-SwiftDictionaryCoding_Tests.debug.xcconfig */; 515 | buildSettings = { 516 | CLANG_ENABLE_MODULES = YES; 517 | FRAMEWORK_SEARCH_PATHS = ( 518 | "$(SDKROOT)/Developer/Library/Frameworks", 519 | "$(inherited)", 520 | ); 521 | GCC_PREPROCESSOR_DEFINITIONS = ( 522 | "DEBUG=1", 523 | "$(inherited)", 524 | ); 525 | INFOPLIST_FILE = Tests/Info.plist; 526 | LD_RUNPATH_SEARCH_PATHS = ( 527 | "$(inherited)", 528 | "@executable_path/Frameworks", 529 | "@loader_path/Frameworks", 530 | ); 531 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 532 | PRODUCT_NAME = "$(TARGET_NAME)"; 533 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 534 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 535 | SWIFT_VERSION = 4.0; 536 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftDictionaryCoding_Example.app/SwiftDictionaryCoding_Example"; 537 | }; 538 | name = Debug; 539 | }; 540 | 607FACF41AFB9204008FA782 /* Release */ = { 541 | isa = XCBuildConfiguration; 542 | baseConfigurationReference = 4CBF4BB6EBCB63D047DBB981 /* Pods-SwiftDictionaryCoding_Tests.release.xcconfig */; 543 | buildSettings = { 544 | CLANG_ENABLE_MODULES = YES; 545 | FRAMEWORK_SEARCH_PATHS = ( 546 | "$(SDKROOT)/Developer/Library/Frameworks", 547 | "$(inherited)", 548 | ); 549 | INFOPLIST_FILE = Tests/Info.plist; 550 | LD_RUNPATH_SEARCH_PATHS = ( 551 | "$(inherited)", 552 | "@executable_path/Frameworks", 553 | "@loader_path/Frameworks", 554 | ); 555 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 556 | PRODUCT_NAME = "$(TARGET_NAME)"; 557 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 558 | SWIFT_VERSION = 4.0; 559 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftDictionaryCoding_Example.app/SwiftDictionaryCoding_Example"; 560 | }; 561 | name = Release; 562 | }; 563 | /* End XCBuildConfiguration section */ 564 | 565 | /* Begin XCConfigurationList section */ 566 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "SwiftDictionaryCoding" */ = { 567 | isa = XCConfigurationList; 568 | buildConfigurations = ( 569 | 607FACED1AFB9204008FA782 /* Debug */, 570 | 607FACEE1AFB9204008FA782 /* Release */, 571 | ); 572 | defaultConfigurationIsVisible = 0; 573 | defaultConfigurationName = Release; 574 | }; 575 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SwiftDictionaryCoding_Example" */ = { 576 | isa = XCConfigurationList; 577 | buildConfigurations = ( 578 | 607FACF01AFB9204008FA782 /* Debug */, 579 | 607FACF11AFB9204008FA782 /* Release */, 580 | ); 581 | defaultConfigurationIsVisible = 0; 582 | defaultConfigurationName = Release; 583 | }; 584 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SwiftDictionaryCoding_Tests" */ = { 585 | isa = XCConfigurationList; 586 | buildConfigurations = ( 587 | 607FACF31AFB9204008FA782 /* Debug */, 588 | 607FACF41AFB9204008FA782 /* Release */, 589 | ); 590 | defaultConfigurationIsVisible = 0; 591 | defaultConfigurationName = Release; 592 | }; 593 | /* End XCConfigurationList section */ 594 | }; 595 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 596 | } 597 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding.xcodeproj/xcshareddata/xcschemes/SwiftDictionaryCoding-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SwiftDictionaryCoding 4 | // 5 | // Created by ashleymills on 09/13/2018. 6 | // Copyright (c) 2018 ashleymills. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/SwiftDictionaryCoding/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SwiftDictionaryCoding 4 | // 5 | // Created by ashleymills on 09/13/2018. 6 | // Copyright (c) 2018 ashleymills. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/DicionaryDecoderTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DicionaryDecoderTests.swift 3 | // SwiftDictionaryCoding_Tests 4 | // 5 | // Created by Ashley Mills on 13/09/2018. 6 | // Copyright © 2018 CocoaPods. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | import SwiftDictionaryCoding 11 | 12 | class DicionaryDecoderTests: XCTestCase { 13 | 14 | struct Person: Codable { 15 | let name: String 16 | } 17 | 18 | struct Event: Codable { 19 | let id: Int 20 | let eventName: String 21 | let location: String? 22 | let price: Float? 23 | let attendees: [Person] 24 | } 25 | 26 | override func setUp() { 27 | super.setUp() 28 | } 29 | 30 | override func tearDown() { 31 | super.tearDown() 32 | } 33 | 34 | func testDecode() throws { 35 | 36 | let dict: [String: Any] = ["id": 1, "eventName": "Christmas", "price": 10, "attendees": [["name": "fred"]]] 37 | 38 | let decoder = DictionaryDecoder() 39 | 40 | XCTAssertNoThrow(try decoder.decode(Event.self, from: dict)) 41 | } 42 | 43 | func testDecodeSnakeCase() throws { 44 | 45 | let dict: [String: Any] = ["id": 1, "event_name": "Christmas", "price": 10, "attendees": [["name": "fred"]]] 46 | 47 | let decoder = DictionaryDecoder() 48 | 49 | XCTAssertThrowsError(try decoder.decode(Event.self, from: dict)) 50 | 51 | decoder.keyDecodingStrategy = .convertFromSnakeCase 52 | 53 | XCTAssertNoThrow(try decoder.decode(Event.self, from: dict)) 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /Example/Tests/DicionaryEncoderTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DicionaryEncoderTests.swift 3 | // SwiftDictionaryCoding_Tests 4 | // 5 | // Created by Ashley Mills on 13/09/2018. 6 | // Copyright © 2018 CocoaPods. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | import SwiftDictionaryCoding 11 | 12 | class DicionaryEncoderTests: XCTestCase { 13 | 14 | struct Person: Codable { 15 | let name: String 16 | } 17 | 18 | struct Event: Codable { 19 | let id: Int 20 | let eventName: String 21 | let location: String? 22 | let price: Float? 23 | let attendees: [Person] 24 | } 25 | 26 | override func setUp() { 27 | super.setUp() 28 | } 29 | 30 | override func tearDown() { 31 | super.tearDown() 32 | } 33 | 34 | func testEncode() throws { 35 | 36 | let event = Event(id: 1, eventName: "Christmas", location: nil, price: 10, attendees: [Person(name: "fred")]) 37 | 38 | let encoder = DictionaryEncoder() 39 | 40 | let dict = try encoder.encode(event) 41 | 42 | let result: [String: Any] = ["id": 1, "eventName": "Christmas", "price": 10, "attendees": [["name": "fred"]]] 43 | 44 | XCTAssertEqual(dict as NSDictionary, result as NSDictionary) 45 | } 46 | 47 | func testEncodeSnakeCase() throws { 48 | 49 | let encoder = DictionaryEncoder() 50 | encoder.keyEncodingStrategy = .convertToSnakeCase 51 | 52 | let event = Event(id: 1, eventName: "Christmas", location: nil, price: 10, attendees: [Person(name: "fred")]) 53 | 54 | let dict = try encoder.encode(event) 55 | 56 | let result: [String: Any] = ["id": 1, "event_name": "Christmas", "price": 10, "attendees": [["name": "fred"]]] 57 | 58 | XCTAssertEqual(dict as NSDictionary, result as NSDictionary) 59 | } 60 | 61 | func testEncodeNonConformingFloatThrow() throws { 62 | 63 | let event = Event(id: 1, eventName: "Christmas", location: nil, price: Float.nan, attendees: [Person(name: "fred")]) 64 | 65 | let encoder = DictionaryEncoder() 66 | 67 | XCTAssertThrowsError(try encoder.encode(event)) 68 | } 69 | 70 | func testEncodeNonConformingFloatString() throws { 71 | 72 | let event = Event(id: 1, eventName: "Christmas", location: nil, price: Float.nan, attendees: [Person(name: "fred")]) 73 | 74 | let encoder = DictionaryEncoder() 75 | encoder.nonConformingFloatEncodingStrategy = .convertToString(positiveInfinity: "+INF", negativeInfinity: "-INF", nan: "ERROR") 76 | 77 | let dict = try encoder.encode(event) 78 | 79 | let result: [String: Any] = ["id": 1, "eventName": "Christmas", "price": "ERROR", "attendees": [["name": "fred"]]] 80 | 81 | XCTAssertEqual(dict as NSDictionary, result as NSDictionary) 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Ashley Mills 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SwiftDictionaryCoding 2 | 3 | [![CI Status](https://img.shields.io/travis/ashleymills/SwiftDictionaryCoding.svg?style=flat)](https://travis-ci.org/ashleymills/SwiftDictionaryCoding) 4 | [![Version](https://img.shields.io/cocoapods/v/SwiftDictionaryCoding.svg?style=flat)](https://cocoapods.org/pods/SwiftDictionaryCoding) 5 | [![License](https://img.shields.io/cocoapods/l/SwiftDictionaryCoding.svg?style=flat)](https://cocoapods.org/pods/SwiftDictionaryCoding) 6 | [![Platform](https://img.shields.io/cocoapods/p/SwiftDictionaryCoding.svg?style=flat)](https://cocoapods.org/pods/SwiftDictionaryCoding) 7 | 8 | 9 | This library allows you to use a encode/decode Swift objects that conform to `Codable` protocols to and from Dictionaries in the same way you'd use a `JSONEncoder/Decoder` to convert to JSON. They use the same encoding and decoding strategies as their JSON counterparts (because they wrap the JSON equivalents) 10 | 11 | ### Encoding 12 | ```Swift 13 | 14 | struct Event: Codable { 15 | let id: Int 16 | let location: String? 17 | let price: Float? 18 | } 19 | 20 | let event = Event(id: 1, eventName: "Christmas", location: nil, price: 10) 21 | let encoder = DictionaryEncoder() 22 | let dict = try encoder.encode(event) 23 | ``` 24 | 25 | ### Decoding 26 | ```Swift 27 | let dict: [String: Any] = ["id": 1, "eventName": "Christmas", "price": 10] 28 | let decoder = DictionaryDecoder() 29 | let event = try decoder.decode(Event.self, from: dict)) 30 | ``` 31 | 32 | 33 | ## Installation 34 | 35 | SwiftDictionaryCoding is available through [CocoaPods](https://cocoapods.org). To install 36 | it, simply add the following line to your Podfile: 37 | 38 | ```ruby 39 | pod 'SwiftDictionaryCoding' 40 | ``` 41 | 42 | ## Author 43 | 44 | ashleymills, ashleymills@mac.com 45 | 46 | ## License 47 | 48 | SwiftDictionaryCoding is available under the MIT license. See the LICENSE file for more info. 49 | -------------------------------------------------------------------------------- /SwiftDictionaryCoding.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint SwiftDictionaryCoding.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'SwiftDictionaryCoding' 11 | s.version = '1.0.0' 12 | s.summary = 'Decode / encode dictionaries.' 13 | s.description = 'Decode / encode instances of Decodable/Encodable objects to / from dictionaries' 14 | s.swift_version = '4.1' 15 | 16 | s.homepage = 'https://github.com/ashleymills/SwiftDictionaryCoding' 17 | s.license = { :type => 'MIT', :file => 'LICENSE' } 18 | s.author = { 'ashleymills' => 'ashleymills@mac.com' } 19 | s.source = { :git => 'https://github.com/ashleymills/SwiftDictionaryCoding.git', :tag => s.version.to_s } 20 | 21 | s.ios.deployment_target = '9.3' 22 | s.source_files = 'SwiftDictionaryCoding/Classes/**/*' 23 | 24 | end 25 | -------------------------------------------------------------------------------- /SwiftDictionaryCoding/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleymills/SwiftDictionaryCoding/c0dc5ac0d853900a595263b32571e60469ac215b/SwiftDictionaryCoding/Assets/.gitkeep -------------------------------------------------------------------------------- /SwiftDictionaryCoding/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleymills/SwiftDictionaryCoding/c0dc5ac0d853900a595263b32571e60469ac215b/SwiftDictionaryCoding/Classes/.gitkeep -------------------------------------------------------------------------------- /SwiftDictionaryCoding/Classes/DictionaryDecoder.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DictionaryEncoder.swift 3 | // Dreadsheet 4 | // 5 | // Created by Ashley Mills on 13/09/2018. 6 | // Copyright © 2018 Joylord Systems Ltd. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public class DictionaryDecoder { 12 | 13 | public init() { 14 | } 15 | 16 | private let decoder = JSONDecoder() 17 | 18 | public var dateDecodingStrategy: JSONDecoder.DateDecodingStrategy { 19 | set { decoder.dateDecodingStrategy = newValue } 20 | get { return decoder.dateDecodingStrategy } 21 | } 22 | 23 | public var dataDecodingStrategy: JSONDecoder.DataDecodingStrategy { 24 | set { decoder.dataDecodingStrategy = newValue } 25 | get { return decoder.dataDecodingStrategy } 26 | } 27 | 28 | public var nonConformingFloatDecodingStrategy: JSONDecoder.NonConformingFloatDecodingStrategy { 29 | set { decoder.nonConformingFloatDecodingStrategy = newValue } 30 | get { return decoder.nonConformingFloatDecodingStrategy } 31 | } 32 | 33 | public var keyDecodingStrategy: JSONDecoder.KeyDecodingStrategy { 34 | set { decoder.keyDecodingStrategy = newValue } 35 | get { return decoder.keyDecodingStrategy } 36 | } 37 | 38 | public func decode(_ type: T.Type, from dictionary: [String: Any]) throws -> T where T : Decodable { 39 | let data = try JSONSerialization.data(withJSONObject: dictionary, options: []) 40 | return try decoder.decode(type, from: data) 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /SwiftDictionaryCoding/Classes/DictionaryEncoder.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DictionaryEncoder.swift 3 | // Dreadsheet 4 | // 5 | // Created by Ashley Mills on 13/09/2018. 6 | // Copyright © 2018 Joylord Systems Ltd. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public class DictionaryEncoder { 12 | 13 | public init() { 14 | } 15 | 16 | private let encoder = JSONEncoder() 17 | 18 | public var dateEncodingStrategy: JSONEncoder.DateEncodingStrategy { 19 | set { encoder.dateEncodingStrategy = newValue } 20 | get { return encoder.dateEncodingStrategy } 21 | } 22 | 23 | public var dataEncodingStrategy: JSONEncoder.DataEncodingStrategy { 24 | set { encoder.dataEncodingStrategy = newValue } 25 | get { return encoder.dataEncodingStrategy } 26 | } 27 | 28 | public var nonConformingFloatEncodingStrategy: JSONEncoder.NonConformingFloatEncodingStrategy { 29 | set { encoder.nonConformingFloatEncodingStrategy = newValue } 30 | get { return encoder.nonConformingFloatEncodingStrategy } 31 | } 32 | 33 | public var keyEncodingStrategy: JSONEncoder.KeyEncodingStrategy { 34 | set { encoder.keyEncodingStrategy = newValue } 35 | get { return encoder.keyEncodingStrategy } 36 | } 37 | 38 | public func encode(_ value: T) throws -> [String: Any] where T : Encodable { 39 | let data = try encoder.encode(value) 40 | return try JSONSerialization.jsonObject(with: data, options: .allowFragments) as! [String: Any] 41 | } 42 | } 43 | 44 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------