├── .DS_Store ├── .gitignore ├── .swift-version ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── Example ├── .DS_Store ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── datamuse-swift.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-datamuse-swift_Example │ │ ├── Pods-datamuse-swift_Example-acknowledgements.markdown │ │ ├── Pods-datamuse-swift_Example-acknowledgements.plist │ │ ├── Pods-datamuse-swift_Example-dummy.m │ │ ├── Pods-datamuse-swift_Example-frameworks.sh │ │ ├── Pods-datamuse-swift_Example-umbrella.h │ │ ├── Pods-datamuse-swift_Example.debug.xcconfig │ │ ├── Pods-datamuse-swift_Example.modulemap │ │ └── Pods-datamuse-swift_Example.release.xcconfig │ │ └── datamuse-swift │ │ ├── datamuse-swift-dummy.m │ │ ├── datamuse-swift-prefix.pch │ │ ├── datamuse-swift-umbrella.h │ │ └── datamuse-swift.modulemap ├── Tests │ ├── Info.plist │ └── Tests.swift ├── datamuse-swift.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── datamuse-swift-Example.xcscheme ├── datamuse-swift.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── developer.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist └── datamuse-swift │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift ├── LICENSE ├── Package.resolved ├── Package.swift ├── Readme.md ├── Sources ├── Core │ ├── DataMuseClient.swift │ └── Word.swift ├── Info-tvOS.plist ├── Info.plist └── datamuse-swift.h ├── Tests ├── Info-tvOS.plist ├── Info.plist └── datamuse-swiftSpec.swift ├── datamuse-swift.playground ├── Contents.swift └── contents.xcplayground ├── datamuse-swift.podspec ├── datamuse-swift.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── datamuse-swift-iOS.xcscheme │ ├── datamuse-swift-macOS.xcscheme │ ├── datamuse-swift-tvOS.xcscheme │ └── datamuse-swift-watchOS.xcscheme ├── datamuse-swift.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── developer.xcuserdatad │ └── UserInterfaceState.xcuserstate └── scripts └── bootstrap /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezefranca/datamuse-swift/c78df49ab7f499a3f5be2b78fa139d7ac4e4c642/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## OSX 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | 6 | # Icon must end with two \r 7 | Icon 8 | 9 | # Thumbnails 10 | ._* 11 | 12 | # Files that might appear in the root of a volume 13 | .DocumentRevisions-V100 14 | .fseventsd 15 | .Spotlight-V100 16 | .TemporaryItems 17 | .Trashes 18 | .VolumeIcon.icns 19 | .com.apple.timemachine.donotpresent 20 | 21 | # Directories potentially created on remote AFP share 22 | .AppleDB 23 | .AppleDesktop 24 | Network Trash Folder 25 | Temporary Items 26 | .apdisk 27 | 28 | # Xcode 29 | # 30 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 31 | 32 | ## Build generated 33 | build/ 34 | DerivedData/ 35 | 36 | ## Various settings 37 | *.pbxuser 38 | !default.pbxuser 39 | *.mode1v3 40 | !default.mode1v3 41 | *.mode2v3 42 | !default.mode2v3 43 | *.perspectivev3 44 | !default.perspectivev3 45 | xcuserdata/ 46 | 47 | ## Other 48 | *.moved-aside 49 | *.xcuserstate 50 | 51 | ## Obj-C/Swift specific 52 | *.hmap 53 | *.ipa 54 | *.dSYM.zip 55 | *.dSYM 56 | 57 | ## Playgrounds 58 | timeline.xctimeline 59 | playground.xcworkspace 60 | 61 | # Swift Package Manager 62 | # 63 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 64 | Packages/ 65 | .build/ 66 | 67 | # CocoaPods 68 | # 69 | # We recommend against adding the Pods directory to your .gitignore. However 70 | # you should judge for yourself, the pros and cons are mentioned at: 71 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 72 | # 73 | Pods/ 74 | 75 | # Carthage 76 | # 77 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 78 | Carthage/Checkouts 79 | Carthage/Build 80 | 81 | # fastlane 82 | # 83 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 84 | # screenshots whenever they are needed. 85 | # For more information about the recommended setup visit: 86 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 87 | 88 | fastlane/report.xml 89 | fastlane/Preview.html 90 | fastlane/screenshots 91 | fastlane/test_output 92 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode9 3 | branches: 4 | only: 5 | - develop 6 | - /^v\d+\.\d+(\.\d+)?(-\S*)?$/ 7 | before_install: 8 | - gem install cocoapods --no-rdoc --no-ri --no-document --quiet 9 | - brew update 10 | - brew outdated carthage || brew upgrade carthage 11 | 12 | env: 13 | global: 14 | - LC_CTYPE=en_US.UTF-8 15 | - LANG=en_US.UTF-8 16 | - WORKSPACE=datamuse-swift.xcworkspace 17 | - IOS_FRAMEWORK_SCHEME="datamuse-swift-iOS" 18 | - OSX_FRAMEWORK_SCHEME="datamuse-swift-macOS" 19 | - TVOS_FRAMEWORK_SCHEME="datamuse-swift-tvOS" 20 | - WATCHOS_FRAMEWORK_SCHEME="datamuse-swift-watchOS" 21 | matrix: 22 | - DESTINATION="OS=11.0,name=iPhone X" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 23 | - DESTINATION="OS=10.3.1,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 24 | - DESTINATION="OS=9.0,name=iPhone 6" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 25 | - DESTINATION="OS=8.1,name=iPhone 4s" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 26 | - DESTINATION="arch=x86_64" SCHEME="$OSX_FRAMEWORK_SCHEME" RUN_TESTS="YES" 27 | - DESTINATION="OS=11.0,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 28 | - DESTINATION="OS=10.2,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 29 | - DESTINATION="OS=9.0,name=Apple TV 1080p" SCHEME="$TVOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" 30 | - DESTINATION="OS=4.0,name=Apple Watch Series 2 - 42mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" RUN_TESTS="NO" 31 | - DESTINATION="OS=3.1,name=Apple Watch Series 2 - 42mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" RUN_TESTS="NO" 32 | - DESTINATION="OS=2.0,name=Apple Watch - 38mm" SCHEME="$WATCHOS_FRAMEWORK_SCHEME" RUN_TESTS="NO" 33 | 34 | before_script: 35 | - sh scripts/bootstrap 36 | 37 | script: 38 | - set -o pipefail 39 | - xcodebuild -version 40 | - xcodebuild -showsdks 41 | 42 | # Build Framework in Debug and Run Tests if specified 43 | - if [ $RUN_TESTS == "YES" ]; then 44 | xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c; 45 | else 46 | xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; 47 | fi 48 | 49 | # Build Framework in Release and Run Tests if specified 50 | - if [ $RUN_TESTS == "YES" ]; then 51 | xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c; 52 | else 53 | xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c; 54 | fi 55 | 56 | jobs: 57 | include: 58 | - script: pod lib lint --verbose --allow-warnings 59 | - stage: deploy 60 | before_deploy: carthage build --no-skip-current && carthage archive datamuse-swift 61 | deploy: 62 | - provider: releases 63 | api_key: 64 | secure: 65 | file: 66 | - datamuse-swift.framework.zip 67 | skip_cleanup: true 68 | overwrite: true 69 | on: 70 | repo: ezefranca/datamuse-swift 71 | tags: true 72 | - provider: script 73 | script: pod trunk push 74 | on: 75 | tags: true 76 | -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezefranca/datamuse-swift/c78df49ab7f499a3f5be2b78fa139d7ac4e4c642/Example/.DS_Store -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'datamuse-swift_Example' do 5 | # Comment the next line if you don't want to use dynamic frameworks 6 | use_frameworks! 7 | pod 'datamuse-swift', :path => '../' 8 | # Pods for datamuse-swift_Example 9 | 10 | end 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - datamuse-swift (0.0.6): 3 | - datamuse-swift/Core (= 0.0.6) 4 | - datamuse-swift/Core (0.0.6) 5 | 6 | DEPENDENCIES: 7 | - datamuse-swift (from `../`) 8 | 9 | EXTERNAL SOURCES: 10 | datamuse-swift: 11 | :path: "../" 12 | 13 | SPEC CHECKSUMS: 14 | datamuse-swift: 8e7104f7ab8deb8ba294f61cbbc86784d290ff16 15 | 16 | PODFILE CHECKSUM: 948e08a83e6325dbec62d20cce142741ad61ee35 17 | 18 | COCOAPODS: 1.15.2 19 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/datamuse-swift.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "datamuse-swift", 3 | "version": "0.0.6", 4 | "license": { 5 | "type": "MIT", 6 | "file": "LICENSE" 7 | }, 8 | "summary": "A datamuse api swift wrapper without dependencies", 9 | "homepage": "http://ezefranca.com", 10 | "social_media_url": "ttps://github.com/ezefranca/datamuse-swift", 11 | "authors": { 12 | "Ezequiel França": "ezequiel.ifsp@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/ezefranca/datamuse-swift.git", 16 | "tag": "0.0.6" 17 | }, 18 | "platforms": { 19 | "ios": "15.0", 20 | "osx": "10.10", 21 | "tvos": "9.0", 22 | "watchos": "4.0" 23 | }, 24 | "requires_arc": true, 25 | "default_subspecs": "Core", 26 | "subspecs": [ 27 | { 28 | "name": "Core", 29 | "source_files": "Sources/**/*.swift", 30 | "frameworks": "Foundation" 31 | } 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - datamuse-swift (0.0.6): 3 | - datamuse-swift/Core (= 0.0.6) 4 | - datamuse-swift/Core (0.0.6) 5 | 6 | DEPENDENCIES: 7 | - datamuse-swift (from `../`) 8 | 9 | EXTERNAL SOURCES: 10 | datamuse-swift: 11 | :path: "../" 12 | 13 | SPEC CHECKSUMS: 14 | datamuse-swift: 8e7104f7ab8deb8ba294f61cbbc86784d290ff16 15 | 16 | PODFILE CHECKSUM: 948e08a83e6325dbec62d20cce142741ad61ee35 17 | 18 | COCOAPODS: 1.15.2 19 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 07947F5BDBA76D76687EF88D9B9AB590 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; 11 | 3C456AEDC5CEAD7C2F9E94D022A8454B /* DataMuseClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DC3851AE38AD6E7BF347032B43C9D1A /* DataMuseClient.swift */; }; 12 | 4740C956096BFAE1B2C25E346FA29A77 /* datamuse-swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90F5290D4FBDFDB66A8D48EA010C8EA1 /* datamuse-swift-dummy.m */; }; 13 | 56D4CBD704C9E1B0334056B49389ECEE /* datamuse-swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AA775D9E0DEAE20BEBA5A446A3D37F96 /* datamuse-swift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 7F55E95593173EF9965AB0805AF74B74 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; 15 | 8436A90657F70E32AF88E6733C964A2F /* Pods-datamuse-swift_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B5407DF9D0CA6FEE2F898588347D9C /* Pods-datamuse-swift_Example-dummy.m */; }; 16 | 87CAB6699C39904972F8971A1B9A4B6A /* Word.swift in Sources */ = {isa = PBXBuildFile; fileRef = 540D13E60F3EBEA4A4872BB6B4FC4D8C /* Word.swift */; }; 17 | A6A71C3072E575BDD1AB23FE9E98DAED /* Pods-datamuse-swift_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3310A40D359188F5CAAAB9608A8A4696 /* Pods-datamuse-swift_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 171826313B204D13B5A4E2E1B3B02DB6 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 116ABF0992906EACEC928D040B7ACB4D; 26 | remoteInfo = "datamuse-swift"; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 060CD891DC540C468AECEBB3212928BE /* datamuse-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "datamuse-swift-prefix.pch"; sourceTree = ""; }; 32 | 1DC3851AE38AD6E7BF347032B43C9D1A /* DataMuseClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataMuseClient.swift; path = Sources/Core/DataMuseClient.swift; sourceTree = ""; }; 33 | 20B5407DF9D0CA6FEE2F898588347D9C /* Pods-datamuse-swift_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-datamuse-swift_Example-dummy.m"; sourceTree = ""; }; 34 | 20CC39D9AB48961924A2F889F94B2FE4 /* Pods-datamuse-swift_Example */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-datamuse-swift_Example"; path = Pods_datamuse_swift_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 31041C7280129175841A76B7CBDCD27F /* datamuse_swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = datamuse_swift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 36 | 32C3EDF8C6EDBC976436ECFD0A88EFFB /* Pods-datamuse-swift_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-datamuse-swift_Example-acknowledgements.plist"; sourceTree = ""; }; 37 | 3310A40D359188F5CAAAB9608A8A4696 /* Pods-datamuse-swift_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-datamuse-swift_Example-umbrella.h"; sourceTree = ""; }; 38 | 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 39 | 41F1357BA8F81DDBE21F3DCE5A9268DB /* Pods-datamuse-swift_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-datamuse-swift_Example.debug.xcconfig"; sourceTree = ""; }; 40 | 4EA858B7531336C54A8CFBD10DD533C1 /* datamuse-swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "datamuse-swift.debug.xcconfig"; sourceTree = ""; }; 41 | 4EE7F06005A871A6DE87DA04D5EF23D3 /* datamuse-swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "datamuse-swift.release.xcconfig"; sourceTree = ""; }; 42 | 4F679F681A243DB72EEA871B9356AFCD /* datamuse-swift-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "datamuse-swift-Info.plist"; sourceTree = ""; }; 43 | 540D13E60F3EBEA4A4872BB6B4FC4D8C /* Word.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Word.swift; path = Sources/Core/Word.swift; sourceTree = ""; }; 44 | 636B1699779B054757FDB2A97BFAF8C6 /* Readme.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = Readme.md; sourceTree = ""; }; 45 | 6E6F2AF03764C9E71E69FF0C35C3EFA0 /* Pods-datamuse-swift_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-datamuse-swift_Example.release.xcconfig"; sourceTree = ""; }; 46 | 71E21515A1B01785B9539DEF7BB7BC36 /* datamuse-swift.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "datamuse-swift.podspec"; sourceTree = ""; tabWidth = 2; }; 47 | 8FE7B195083A6177903F5C336594DE1C /* Pods-datamuse-swift_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-datamuse-swift_Example-frameworks.sh"; sourceTree = ""; }; 48 | 90F5290D4FBDFDB66A8D48EA010C8EA1 /* datamuse-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "datamuse-swift-dummy.m"; sourceTree = ""; }; 49 | 9C7EF8B528C134DA72DD9BFA750EDAEF /* datamuse-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "datamuse-swift.modulemap"; sourceTree = ""; }; 50 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 51 | AA775D9E0DEAE20BEBA5A446A3D37F96 /* datamuse-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "datamuse-swift-umbrella.h"; sourceTree = ""; }; 52 | AB1C30C7104E9BC16BC9D3ADD1DBFC34 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 53 | B5A0F515530916521399C98F315373A6 /* Pods-datamuse-swift_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-datamuse-swift_Example-Info.plist"; sourceTree = ""; }; 54 | B631CDE5A318E90DAE7F520A14127780 /* Pods-datamuse-swift_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-datamuse-swift_Example.modulemap"; sourceTree = ""; }; 55 | EEB8DEBFE0BB827188E80EE9CD6A0188 /* Pods-datamuse-swift_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-datamuse-swift_Example-acknowledgements.markdown"; sourceTree = ""; }; 56 | /* End PBXFileReference section */ 57 | 58 | /* Begin PBXFrameworksBuildPhase section */ 59 | 6D2FA44F1082318B2F3957C8169BE90F /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | 07947F5BDBA76D76687EF88D9B9AB590 /* Foundation.framework in Frameworks */, 64 | ); 65 | runOnlyForDeploymentPostprocessing = 0; 66 | }; 67 | 73297A3D6C4800C3FC0E4F6E28C18705 /* Frameworks */ = { 68 | isa = PBXFrameworksBuildPhase; 69 | buildActionMask = 2147483647; 70 | files = ( 71 | 7F55E95593173EF9965AB0805AF74B74 /* Foundation.framework in Frameworks */, 72 | ); 73 | runOnlyForDeploymentPostprocessing = 0; 74 | }; 75 | /* End PBXFrameworksBuildPhase section */ 76 | 77 | /* Begin PBXGroup section */ 78 | 1ADA1E3FF05ADA3B952372438271A773 /* Support Files */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 9C7EF8B528C134DA72DD9BFA750EDAEF /* datamuse-swift.modulemap */, 82 | 90F5290D4FBDFDB66A8D48EA010C8EA1 /* datamuse-swift-dummy.m */, 83 | 4F679F681A243DB72EEA871B9356AFCD /* datamuse-swift-Info.plist */, 84 | 060CD891DC540C468AECEBB3212928BE /* datamuse-swift-prefix.pch */, 85 | AA775D9E0DEAE20BEBA5A446A3D37F96 /* datamuse-swift-umbrella.h */, 86 | 4EA858B7531336C54A8CFBD10DD533C1 /* datamuse-swift.debug.xcconfig */, 87 | 4EE7F06005A871A6DE87DA04D5EF23D3 /* datamuse-swift.release.xcconfig */, 88 | ); 89 | name = "Support Files"; 90 | path = "Example/Pods/Target Support Files/datamuse-swift"; 91 | sourceTree = ""; 92 | }; 93 | 337827793243BC84CAFFCADB2AE7AEE6 /* Pods-datamuse-swift_Example */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | B631CDE5A318E90DAE7F520A14127780 /* Pods-datamuse-swift_Example.modulemap */, 97 | EEB8DEBFE0BB827188E80EE9CD6A0188 /* Pods-datamuse-swift_Example-acknowledgements.markdown */, 98 | 32C3EDF8C6EDBC976436ECFD0A88EFFB /* Pods-datamuse-swift_Example-acknowledgements.plist */, 99 | 20B5407DF9D0CA6FEE2F898588347D9C /* Pods-datamuse-swift_Example-dummy.m */, 100 | 8FE7B195083A6177903F5C336594DE1C /* Pods-datamuse-swift_Example-frameworks.sh */, 101 | B5A0F515530916521399C98F315373A6 /* Pods-datamuse-swift_Example-Info.plist */, 102 | 3310A40D359188F5CAAAB9608A8A4696 /* Pods-datamuse-swift_Example-umbrella.h */, 103 | 41F1357BA8F81DDBE21F3DCE5A9268DB /* Pods-datamuse-swift_Example.debug.xcconfig */, 104 | 6E6F2AF03764C9E71E69FF0C35C3EFA0 /* Pods-datamuse-swift_Example.release.xcconfig */, 105 | ); 106 | name = "Pods-datamuse-swift_Example"; 107 | path = "Target Support Files/Pods-datamuse-swift_Example"; 108 | sourceTree = ""; 109 | }; 110 | 6F54F0065B46ACC26FDFFD53F96230A8 /* Pod */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 71E21515A1B01785B9539DEF7BB7BC36 /* datamuse-swift.podspec */, 114 | AB1C30C7104E9BC16BC9D3ADD1DBFC34 /* LICENSE */, 115 | 636B1699779B054757FDB2A97BFAF8C6 /* Readme.md */, 116 | ); 117 | name = Pod; 118 | sourceTree = ""; 119 | }; 120 | 79CC5E0F620A171C175BDFE418B199A7 /* datamuse-swift */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | A26B0C9E8004235D689B0D0AD5ED7958 /* Core */, 124 | 6F54F0065B46ACC26FDFFD53F96230A8 /* Pod */, 125 | 1ADA1E3FF05ADA3B952372438271A773 /* Support Files */, 126 | ); 127 | name = "datamuse-swift"; 128 | path = ../..; 129 | sourceTree = ""; 130 | }; 131 | 8DD78A275FAE4C44350216FC0908D2AB /* Products */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 31041C7280129175841A76B7CBDCD27F /* datamuse_swift.framework */, 135 | 20CC39D9AB48961924A2F889F94B2FE4 /* Pods-datamuse-swift_Example */, 136 | ); 137 | name = Products; 138 | sourceTree = ""; 139 | }; 140 | 9FFB5BEC731CDD1192FF848E5B7E5939 /* Targets Support Files */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 337827793243BC84CAFFCADB2AE7AEE6 /* Pods-datamuse-swift_Example */, 144 | ); 145 | name = "Targets Support Files"; 146 | sourceTree = ""; 147 | }; 148 | A26B0C9E8004235D689B0D0AD5ED7958 /* Core */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 1DC3851AE38AD6E7BF347032B43C9D1A /* DataMuseClient.swift */, 152 | 540D13E60F3EBEA4A4872BB6B4FC4D8C /* Word.swift */, 153 | ); 154 | name = Core; 155 | sourceTree = ""; 156 | }; 157 | C6A858B5E645BC8BFCE0E393A206780A /* Development Pods */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | 79CC5E0F620A171C175BDFE418B199A7 /* datamuse-swift */, 161 | ); 162 | name = "Development Pods"; 163 | sourceTree = ""; 164 | }; 165 | CF1408CF629C7361332E53B88F7BD30C = { 166 | isa = PBXGroup; 167 | children = ( 168 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 169 | C6A858B5E645BC8BFCE0E393A206780A /* Development Pods */, 170 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 171 | 8DD78A275FAE4C44350216FC0908D2AB /* Products */, 172 | 9FFB5BEC731CDD1192FF848E5B7E5939 /* Targets Support Files */, 173 | ); 174 | sourceTree = ""; 175 | }; 176 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 177 | isa = PBXGroup; 178 | children = ( 179 | E4801F62A6B08CD9B5410329F1A18FDE /* iOS */, 180 | ); 181 | name = Frameworks; 182 | sourceTree = ""; 183 | }; 184 | E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */, 188 | ); 189 | name = iOS; 190 | sourceTree = ""; 191 | }; 192 | /* End PBXGroup section */ 193 | 194 | /* Begin PBXHeadersBuildPhase section */ 195 | 1DB9046C755A5121B2A4C82BB158F35D /* Headers */ = { 196 | isa = PBXHeadersBuildPhase; 197 | buildActionMask = 2147483647; 198 | files = ( 199 | A6A71C3072E575BDD1AB23FE9E98DAED /* Pods-datamuse-swift_Example-umbrella.h in Headers */, 200 | ); 201 | runOnlyForDeploymentPostprocessing = 0; 202 | }; 203 | 59296B4E9EEA2A04EE2596CCD28634C6 /* Headers */ = { 204 | isa = PBXHeadersBuildPhase; 205 | buildActionMask = 2147483647; 206 | files = ( 207 | 56D4CBD704C9E1B0334056B49389ECEE /* datamuse-swift-umbrella.h in Headers */, 208 | ); 209 | runOnlyForDeploymentPostprocessing = 0; 210 | }; 211 | /* End PBXHeadersBuildPhase section */ 212 | 213 | /* Begin PBXNativeTarget section */ 214 | 116ABF0992906EACEC928D040B7ACB4D /* datamuse-swift */ = { 215 | isa = PBXNativeTarget; 216 | buildConfigurationList = CBFE2D1B17F67F260A49774EB97B0448 /* Build configuration list for PBXNativeTarget "datamuse-swift" */; 217 | buildPhases = ( 218 | 59296B4E9EEA2A04EE2596CCD28634C6 /* Headers */, 219 | 5FE9F7A300747A8874EBBF6BC7C00187 /* Sources */, 220 | 6D2FA44F1082318B2F3957C8169BE90F /* Frameworks */, 221 | EAE9519F0F1DCFBA56647ABF15A7CAA9 /* Resources */, 222 | ); 223 | buildRules = ( 224 | ); 225 | dependencies = ( 226 | ); 227 | name = "datamuse-swift"; 228 | productName = datamuse_swift; 229 | productReference = 31041C7280129175841A76B7CBDCD27F /* datamuse_swift.framework */; 230 | productType = "com.apple.product-type.framework"; 231 | }; 232 | 201791629DDE76BED88C2C23D35A3EA5 /* Pods-datamuse-swift_Example */ = { 233 | isa = PBXNativeTarget; 234 | buildConfigurationList = 65F7F01995F828CE8335C39C072B8EB8 /* Build configuration list for PBXNativeTarget "Pods-datamuse-swift_Example" */; 235 | buildPhases = ( 236 | 1DB9046C755A5121B2A4C82BB158F35D /* Headers */, 237 | F7B013DDE554D11BEA0B388A3C6526BC /* Sources */, 238 | 73297A3D6C4800C3FC0E4F6E28C18705 /* Frameworks */, 239 | B0DD7122543E0EF851D876C261BBEE7A /* Resources */, 240 | ); 241 | buildRules = ( 242 | ); 243 | dependencies = ( 244 | 6473A53E22BFDD4701E681319BD08409 /* PBXTargetDependency */, 245 | ); 246 | name = "Pods-datamuse-swift_Example"; 247 | productName = Pods_datamuse_swift_Example; 248 | productReference = 20CC39D9AB48961924A2F889F94B2FE4 /* Pods-datamuse-swift_Example */; 249 | productType = "com.apple.product-type.framework"; 250 | }; 251 | /* End PBXNativeTarget section */ 252 | 253 | /* Begin PBXProject section */ 254 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 255 | isa = PBXProject; 256 | attributes = { 257 | LastSwiftUpdateCheck = 1600; 258 | LastUpgradeCheck = 1600; 259 | TargetAttributes = { 260 | 116ABF0992906EACEC928D040B7ACB4D = { 261 | LastSwiftMigration = 1540; 262 | }; 263 | }; 264 | }; 265 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 266 | compatibilityVersion = "Xcode 3.2"; 267 | developmentRegion = en; 268 | hasScannedForEncodings = 0; 269 | knownRegions = ( 270 | Base, 271 | en, 272 | ); 273 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 274 | productRefGroup = 8DD78A275FAE4C44350216FC0908D2AB /* Products */; 275 | projectDirPath = ""; 276 | projectRoot = ""; 277 | targets = ( 278 | 116ABF0992906EACEC928D040B7ACB4D /* datamuse-swift */, 279 | 201791629DDE76BED88C2C23D35A3EA5 /* Pods-datamuse-swift_Example */, 280 | ); 281 | }; 282 | /* End PBXProject section */ 283 | 284 | /* Begin PBXResourcesBuildPhase section */ 285 | B0DD7122543E0EF851D876C261BBEE7A /* Resources */ = { 286 | isa = PBXResourcesBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | EAE9519F0F1DCFBA56647ABF15A7CAA9 /* Resources */ = { 293 | isa = PBXResourcesBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | }; 299 | /* End PBXResourcesBuildPhase section */ 300 | 301 | /* Begin PBXSourcesBuildPhase section */ 302 | 5FE9F7A300747A8874EBBF6BC7C00187 /* Sources */ = { 303 | isa = PBXSourcesBuildPhase; 304 | buildActionMask = 2147483647; 305 | files = ( 306 | 4740C956096BFAE1B2C25E346FA29A77 /* datamuse-swift-dummy.m in Sources */, 307 | 3C456AEDC5CEAD7C2F9E94D022A8454B /* DataMuseClient.swift in Sources */, 308 | 87CAB6699C39904972F8971A1B9A4B6A /* Word.swift in Sources */, 309 | ); 310 | runOnlyForDeploymentPostprocessing = 0; 311 | }; 312 | F7B013DDE554D11BEA0B388A3C6526BC /* Sources */ = { 313 | isa = PBXSourcesBuildPhase; 314 | buildActionMask = 2147483647; 315 | files = ( 316 | 8436A90657F70E32AF88E6733C964A2F /* Pods-datamuse-swift_Example-dummy.m in Sources */, 317 | ); 318 | runOnlyForDeploymentPostprocessing = 0; 319 | }; 320 | /* End PBXSourcesBuildPhase section */ 321 | 322 | /* Begin PBXTargetDependency section */ 323 | 6473A53E22BFDD4701E681319BD08409 /* PBXTargetDependency */ = { 324 | isa = PBXTargetDependency; 325 | name = "datamuse-swift"; 326 | target = 116ABF0992906EACEC928D040B7ACB4D /* datamuse-swift */; 327 | targetProxy = 171826313B204D13B5A4E2E1B3B02DB6 /* PBXContainerItemProxy */; 328 | }; 329 | /* End PBXTargetDependency section */ 330 | 331 | /* Begin XCBuildConfiguration section */ 332 | 08A5C6799393AFE00B547975FF0A61F8 /* Debug */ = { 333 | isa = XCBuildConfiguration; 334 | baseConfigurationReference = 4EA858B7531336C54A8CFBD10DD533C1 /* datamuse-swift.debug.xcconfig */; 335 | buildSettings = { 336 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 337 | CLANG_ENABLE_OBJC_WEAK = NO; 338 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 339 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 340 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 341 | CURRENT_PROJECT_VERSION = 1; 342 | DEFINES_MODULE = YES; 343 | DYLIB_COMPATIBILITY_VERSION = 1; 344 | DYLIB_CURRENT_VERSION = 1; 345 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 346 | GCC_PREFIX_HEADER = "Target Support Files/datamuse-swift/datamuse-swift-prefix.pch"; 347 | INFOPLIST_FILE = "Target Support Files/datamuse-swift/datamuse-swift-Info.plist"; 348 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 349 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 350 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 351 | MODULEMAP_FILE = "Target Support Files/datamuse-swift/datamuse-swift.modulemap"; 352 | PRODUCT_MODULE_NAME = datamuse_swift; 353 | PRODUCT_NAME = datamuse_swift; 354 | SDKROOT = iphoneos; 355 | SKIP_INSTALL = YES; 356 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 357 | SWIFT_VERSION = 5.0; 358 | TARGETED_DEVICE_FAMILY = "1,2"; 359 | VERSIONING_SYSTEM = "apple-generic"; 360 | VERSION_INFO_PREFIX = ""; 361 | }; 362 | name = Debug; 363 | }; 364 | 1ECB664CBC16A6EC5A9BC72F40F1B74A /* Debug */ = { 365 | isa = XCBuildConfiguration; 366 | baseConfigurationReference = 41F1357BA8F81DDBE21F3DCE5A9268DB /* Pods-datamuse-swift_Example.debug.xcconfig */; 367 | buildSettings = { 368 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 369 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 370 | CLANG_ENABLE_OBJC_WEAK = NO; 371 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 372 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 373 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 374 | CURRENT_PROJECT_VERSION = 1; 375 | DEFINES_MODULE = YES; 376 | DYLIB_COMPATIBILITY_VERSION = 1; 377 | DYLIB_CURRENT_VERSION = 1; 378 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 379 | INFOPLIST_FILE = "Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-Info.plist"; 380 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 381 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 382 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 383 | MACH_O_TYPE = staticlib; 384 | MODULEMAP_FILE = "Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.modulemap"; 385 | OTHER_LDFLAGS = ""; 386 | OTHER_LIBTOOLFLAGS = ""; 387 | PODS_ROOT = "$(SRCROOT)"; 388 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 389 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 390 | SDKROOT = iphoneos; 391 | SKIP_INSTALL = YES; 392 | TARGETED_DEVICE_FAMILY = "1,2"; 393 | VERSIONING_SYSTEM = "apple-generic"; 394 | VERSION_INFO_PREFIX = ""; 395 | }; 396 | name = Debug; 397 | }; 398 | 82ACDC116D12B37E8788710BE1A0DA80 /* Release */ = { 399 | isa = XCBuildConfiguration; 400 | baseConfigurationReference = 6E6F2AF03764C9E71E69FF0C35C3EFA0 /* Pods-datamuse-swift_Example.release.xcconfig */; 401 | buildSettings = { 402 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 403 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 404 | CLANG_ENABLE_OBJC_WEAK = NO; 405 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 406 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 407 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 408 | CURRENT_PROJECT_VERSION = 1; 409 | DEFINES_MODULE = YES; 410 | DYLIB_COMPATIBILITY_VERSION = 1; 411 | DYLIB_CURRENT_VERSION = 1; 412 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 413 | INFOPLIST_FILE = "Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-Info.plist"; 414 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 415 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 416 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 417 | MACH_O_TYPE = staticlib; 418 | MODULEMAP_FILE = "Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.modulemap"; 419 | OTHER_LDFLAGS = ""; 420 | OTHER_LIBTOOLFLAGS = ""; 421 | PODS_ROOT = "$(SRCROOT)"; 422 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 423 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 424 | SDKROOT = iphoneos; 425 | SKIP_INSTALL = YES; 426 | TARGETED_DEVICE_FAMILY = "1,2"; 427 | VALIDATE_PRODUCT = YES; 428 | VERSIONING_SYSTEM = "apple-generic"; 429 | VERSION_INFO_PREFIX = ""; 430 | }; 431 | name = Release; 432 | }; 433 | 90D4D09BCB6A4660E43ACBE9ECB6FE9A /* Debug */ = { 434 | isa = XCBuildConfiguration; 435 | buildSettings = { 436 | ALWAYS_SEARCH_USER_PATHS = NO; 437 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 438 | CLANG_ANALYZER_NONNULL = YES; 439 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 440 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 441 | CLANG_CXX_LIBRARY = "libc++"; 442 | CLANG_ENABLE_MODULES = YES; 443 | CLANG_ENABLE_OBJC_ARC = YES; 444 | CLANG_ENABLE_OBJC_WEAK = YES; 445 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 446 | CLANG_WARN_BOOL_CONVERSION = YES; 447 | CLANG_WARN_COMMA = YES; 448 | CLANG_WARN_CONSTANT_CONVERSION = YES; 449 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 450 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 451 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 452 | CLANG_WARN_EMPTY_BODY = YES; 453 | CLANG_WARN_ENUM_CONVERSION = YES; 454 | CLANG_WARN_INFINITE_RECURSION = YES; 455 | CLANG_WARN_INT_CONVERSION = YES; 456 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 457 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 458 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 459 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 460 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 461 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 462 | CLANG_WARN_STRICT_PROTOTYPES = YES; 463 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 464 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 465 | CLANG_WARN_UNREACHABLE_CODE = YES; 466 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 467 | COPY_PHASE_STRIP = NO; 468 | DEBUG_INFORMATION_FORMAT = dwarf; 469 | ENABLE_STRICT_OBJC_MSGSEND = YES; 470 | ENABLE_TESTABILITY = YES; 471 | GCC_C_LANGUAGE_STANDARD = gnu11; 472 | GCC_DYNAMIC_NO_PIC = NO; 473 | GCC_NO_COMMON_BLOCKS = YES; 474 | GCC_OPTIMIZATION_LEVEL = 0; 475 | GCC_PREPROCESSOR_DEFINITIONS = ( 476 | "POD_CONFIGURATION_DEBUG=1", 477 | "DEBUG=1", 478 | "$(inherited)", 479 | ); 480 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 481 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 482 | GCC_WARN_UNDECLARED_SELECTOR = YES; 483 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 484 | GCC_WARN_UNUSED_FUNCTION = YES; 485 | GCC_WARN_UNUSED_VARIABLE = YES; 486 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 487 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 488 | MTL_FAST_MATH = YES; 489 | ONLY_ACTIVE_ARCH = YES; 490 | PRODUCT_NAME = "$(TARGET_NAME)"; 491 | STRIP_INSTALLED_PRODUCT = NO; 492 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 493 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 494 | SWIFT_VERSION = 5.0; 495 | SYMROOT = "${SRCROOT}/../build"; 496 | }; 497 | name = Debug; 498 | }; 499 | 9553C89E183877A5CB2F3C6801BEC129 /* Release */ = { 500 | isa = XCBuildConfiguration; 501 | buildSettings = { 502 | ALWAYS_SEARCH_USER_PATHS = NO; 503 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 504 | CLANG_ANALYZER_NONNULL = YES; 505 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 506 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 507 | CLANG_CXX_LIBRARY = "libc++"; 508 | CLANG_ENABLE_MODULES = YES; 509 | CLANG_ENABLE_OBJC_ARC = YES; 510 | CLANG_ENABLE_OBJC_WEAK = YES; 511 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 512 | CLANG_WARN_BOOL_CONVERSION = YES; 513 | CLANG_WARN_COMMA = YES; 514 | CLANG_WARN_CONSTANT_CONVERSION = YES; 515 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 516 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 517 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 518 | CLANG_WARN_EMPTY_BODY = YES; 519 | CLANG_WARN_ENUM_CONVERSION = YES; 520 | CLANG_WARN_INFINITE_RECURSION = YES; 521 | CLANG_WARN_INT_CONVERSION = YES; 522 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 523 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 524 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 525 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 526 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 527 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 528 | CLANG_WARN_STRICT_PROTOTYPES = YES; 529 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 530 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 531 | CLANG_WARN_UNREACHABLE_CODE = YES; 532 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 533 | COPY_PHASE_STRIP = NO; 534 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 535 | ENABLE_NS_ASSERTIONS = NO; 536 | ENABLE_STRICT_OBJC_MSGSEND = YES; 537 | GCC_C_LANGUAGE_STANDARD = gnu11; 538 | GCC_NO_COMMON_BLOCKS = YES; 539 | GCC_PREPROCESSOR_DEFINITIONS = ( 540 | "POD_CONFIGURATION_RELEASE=1", 541 | "$(inherited)", 542 | ); 543 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 544 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 545 | GCC_WARN_UNDECLARED_SELECTOR = YES; 546 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 547 | GCC_WARN_UNUSED_FUNCTION = YES; 548 | GCC_WARN_UNUSED_VARIABLE = YES; 549 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 550 | MTL_ENABLE_DEBUG_INFO = NO; 551 | MTL_FAST_MATH = YES; 552 | PRODUCT_NAME = "$(TARGET_NAME)"; 553 | STRIP_INSTALLED_PRODUCT = NO; 554 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 555 | SWIFT_VERSION = 5.0; 556 | SYMROOT = "${SRCROOT}/../build"; 557 | }; 558 | name = Release; 559 | }; 560 | A9176D51D9C6D28F19C4B5207A177A1A /* Release */ = { 561 | isa = XCBuildConfiguration; 562 | baseConfigurationReference = 4EE7F06005A871A6DE87DA04D5EF23D3 /* datamuse-swift.release.xcconfig */; 563 | buildSettings = { 564 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 565 | CLANG_ENABLE_OBJC_WEAK = NO; 566 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 567 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 568 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 569 | CURRENT_PROJECT_VERSION = 1; 570 | DEFINES_MODULE = YES; 571 | DYLIB_COMPATIBILITY_VERSION = 1; 572 | DYLIB_CURRENT_VERSION = 1; 573 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 574 | GCC_PREFIX_HEADER = "Target Support Files/datamuse-swift/datamuse-swift-prefix.pch"; 575 | INFOPLIST_FILE = "Target Support Files/datamuse-swift/datamuse-swift-Info.plist"; 576 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 577 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 578 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 579 | MODULEMAP_FILE = "Target Support Files/datamuse-swift/datamuse-swift.modulemap"; 580 | PRODUCT_MODULE_NAME = datamuse_swift; 581 | PRODUCT_NAME = datamuse_swift; 582 | SDKROOT = iphoneos; 583 | SKIP_INSTALL = YES; 584 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 585 | SWIFT_VERSION = 5.0; 586 | TARGETED_DEVICE_FAMILY = "1,2"; 587 | VALIDATE_PRODUCT = YES; 588 | VERSIONING_SYSTEM = "apple-generic"; 589 | VERSION_INFO_PREFIX = ""; 590 | }; 591 | name = Release; 592 | }; 593 | /* End XCBuildConfiguration section */ 594 | 595 | /* Begin XCConfigurationList section */ 596 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 597 | isa = XCConfigurationList; 598 | buildConfigurations = ( 599 | 90D4D09BCB6A4660E43ACBE9ECB6FE9A /* Debug */, 600 | 9553C89E183877A5CB2F3C6801BEC129 /* Release */, 601 | ); 602 | defaultConfigurationIsVisible = 0; 603 | defaultConfigurationName = Release; 604 | }; 605 | 65F7F01995F828CE8335C39C072B8EB8 /* Build configuration list for PBXNativeTarget "Pods-datamuse-swift_Example" */ = { 606 | isa = XCConfigurationList; 607 | buildConfigurations = ( 608 | 1ECB664CBC16A6EC5A9BC72F40F1B74A /* Debug */, 609 | 82ACDC116D12B37E8788710BE1A0DA80 /* Release */, 610 | ); 611 | defaultConfigurationIsVisible = 0; 612 | defaultConfigurationName = Release; 613 | }; 614 | CBFE2D1B17F67F260A49774EB97B0448 /* Build configuration list for PBXNativeTarget "datamuse-swift" */ = { 615 | isa = XCConfigurationList; 616 | buildConfigurations = ( 617 | 08A5C6799393AFE00B547975FF0A61F8 /* Debug */, 618 | A9176D51D9C6D28F19C4B5207A177A1A /* Release */, 619 | ); 620 | defaultConfigurationIsVisible = 0; 621 | defaultConfigurationName = Release; 622 | }; 623 | /* End XCConfigurationList section */ 624 | }; 625 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 626 | } 627 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## datamuse-swift 5 | 6 | MIT License 7 | 8 | Copyright (c) 2017 ezefranca 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | 28 | Generated by CocoaPods - https://cocoapods.org 29 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_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 | MIT License 18 | 19 | Copyright (c) 2017 ezefranca 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 37 | SOFTWARE. 38 | 39 | License 40 | MIT 41 | Title 42 | datamuse-swift 43 | Type 44 | PSGroupSpecifier 45 | 46 | 47 | FooterText 48 | Generated by CocoaPods - https://cocoapods.org 49 | Title 50 | 51 | Type 52 | PSGroupSpecifier 53 | 54 | 55 | StringsTable 56 | Acknowledgements 57 | Title 58 | Acknowledgements 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_datamuse_swift_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_datamuse_swift_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | BCSYMBOLMAP_DIR="BCSymbolMaps" 23 | 24 | 25 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 26 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 27 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 28 | 29 | # Copies and strips a vendored framework 30 | install_framework() 31 | { 32 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 33 | local source="${BUILT_PRODUCTS_DIR}/$1" 34 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 35 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 36 | elif [ -r "$1" ]; then 37 | local source="$1" 38 | fi 39 | 40 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 41 | 42 | if [ -L "${source}" ]; then 43 | echo "Symlinked..." 44 | source="$(readlink -f "${source}")" 45 | fi 46 | 47 | if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then 48 | # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied 49 | find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do 50 | echo "Installing $f" 51 | install_bcsymbolmap "$f" "$destination" 52 | rm "$f" 53 | done 54 | rmdir "${source}/${BCSYMBOLMAP_DIR}" 55 | fi 56 | 57 | # Use filter instead of exclude so missing patterns don't throw errors. 58 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 59 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 60 | 61 | local basename 62 | basename="$(basename -s .framework "$1")" 63 | binary="${destination}/${basename}.framework/${basename}" 64 | 65 | if ! [ -r "$binary" ]; then 66 | binary="${destination}/${basename}" 67 | elif [ -L "${binary}" ]; then 68 | echo "Destination binary is symlinked..." 69 | dirname="$(dirname "${binary}")" 70 | binary="${dirname}/$(readlink "${binary}")" 71 | fi 72 | 73 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 74 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 75 | strip_invalid_archs "$binary" 76 | fi 77 | 78 | # Resign the code if required by the build settings to avoid unstable apps 79 | code_sign_if_enabled "${destination}/$(basename "$1")" 80 | 81 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 82 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 83 | local swift_runtime_libs 84 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 85 | for lib in $swift_runtime_libs; do 86 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 87 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 88 | code_sign_if_enabled "${destination}/${lib}" 89 | done 90 | fi 91 | } 92 | # Copies and strips a vendored dSYM 93 | install_dsym() { 94 | local source="$1" 95 | warn_missing_arch=${2:-true} 96 | if [ -r "$source" ]; then 97 | # Copy the dSYM into the targets temp dir. 98 | 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}\"" 99 | 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}" 100 | 101 | local basename 102 | basename="$(basename -s .dSYM "$source")" 103 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 104 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 105 | 106 | # Strip invalid architectures from the dSYM. 107 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 108 | strip_invalid_archs "$binary" "$warn_missing_arch" 109 | fi 110 | if [[ $STRIP_BINARY_RETVAL == 0 ]]; then 111 | # Move the stripped file into its final destination. 112 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 113 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 114 | else 115 | # 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. 116 | mkdir -p "${DWARF_DSYM_FOLDER_PATH}" 117 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 118 | fi 119 | fi 120 | } 121 | 122 | # Used as a return value for each invocation of `strip_invalid_archs` function. 123 | STRIP_BINARY_RETVAL=0 124 | 125 | # Strip invalid architectures 126 | strip_invalid_archs() { 127 | binary="$1" 128 | warn_missing_arch=${2:-true} 129 | # Get architectures for current target binary 130 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 131 | # Intersect them with the architectures we are building for 132 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 133 | # If there are no archs supported by this binary then warn the user 134 | if [[ -z "$intersected_archs" ]]; then 135 | if [[ "$warn_missing_arch" == "true" ]]; then 136 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 137 | fi 138 | STRIP_BINARY_RETVAL=1 139 | return 140 | fi 141 | stripped="" 142 | for arch in $binary_archs; do 143 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 144 | # Strip non-valid architectures in-place 145 | lipo -remove "$arch" -output "$binary" "$binary" 146 | stripped="$stripped $arch" 147 | fi 148 | done 149 | if [[ "$stripped" ]]; then 150 | echo "Stripped $binary of architectures:$stripped" 151 | fi 152 | STRIP_BINARY_RETVAL=0 153 | } 154 | 155 | # Copies the bcsymbolmap files of a vendored framework 156 | install_bcsymbolmap() { 157 | local bcsymbolmap_path="$1" 158 | local destination="${BUILT_PRODUCTS_DIR}" 159 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 160 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 161 | } 162 | 163 | # Signs a framework with the provided identity 164 | code_sign_if_enabled() { 165 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 166 | # Use the current code_sign_identity 167 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 168 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 169 | 170 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 171 | code_sign_cmd="$code_sign_cmd &" 172 | fi 173 | echo "$code_sign_cmd" 174 | eval "$code_sign_cmd" 175 | fi 176 | } 177 | 178 | if [[ "$CONFIGURATION" == "Debug" ]]; then 179 | install_framework "${BUILT_PRODUCTS_DIR}/datamuse-swift/datamuse_swift.framework" 180 | fi 181 | if [[ "$CONFIGURATION" == "Release" ]]; then 182 | install_framework "${BUILT_PRODUCTS_DIR}/datamuse-swift/datamuse_swift.framework" 183 | fi 184 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 185 | wait 186 | fi 187 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_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_datamuse_swift_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_datamuse_swift_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/datamuse-swift" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/datamuse-swift/datamuse_swift.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift 8 | OTHER_LDFLAGS = $(inherited) -framework "Foundation" -framework "datamuse_swift" 9 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 10 | PODS_BUILD_DIR = ${BUILD_DIR} 11 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 12 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 13 | PODS_ROOT = ${SRCROOT}/Pods 14 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 15 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 16 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_datamuse_swift_Example { 2 | umbrella header "Pods-datamuse-swift_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/datamuse-swift" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/datamuse-swift/datamuse_swift.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) /usr/lib/swift '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | LIBRARY_SEARCH_PATHS = $(inherited) "${TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" /usr/lib/swift 8 | OTHER_LDFLAGS = $(inherited) -framework "Foundation" -framework "datamuse_swift" 9 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 10 | PODS_BUILD_DIR = ${BUILD_DIR} 11 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 12 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 13 | PODS_ROOT = ${SRCROOT}/Pods 14 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 15 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 16 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/datamuse-swift/datamuse-swift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_datamuse_swift : NSObject 3 | @end 4 | @implementation PodsDummy_datamuse_swift 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/datamuse-swift/datamuse-swift-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/datamuse-swift/datamuse-swift-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 datamuse_swiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char datamuse_swiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/datamuse-swift/datamuse-swift.modulemap: -------------------------------------------------------------------------------- 1 | framework module datamuse_swift { 2 | umbrella header "datamuse-swift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | // https://github.com/Quick/Quick 2 | 3 | import Quick 4 | import Nimble 5 | import datamuse-swift 6 | 7 | class TableOfContentsSpec: QuickSpec { 8 | override func spec() { 9 | describe("these will fail") { 10 | 11 | it("can do maths") { 12 | expect(1) == 2 13 | } 14 | 15 | it("can read") { 16 | expect("number") == "string" 17 | } 18 | 19 | it("will eventually fail") { 20 | expect("time").toEventually( equal("done") ) 21 | } 22 | 23 | context("these will pass") { 24 | 25 | it("can do maths") { 26 | expect(23) == 23 27 | } 28 | 29 | it("can read") { 30 | expect("🐮") == "🐮" 31 | } 32 | 33 | it("will eventually pass") { 34 | var time = "passing" 35 | 36 | DispatchQueue.main.async { 37 | time = "done" 38 | } 39 | 40 | waitUntil { done in 41 | Thread.sleep(forTimeInterval: 0.5) 42 | expect(time) == "done" 43 | 44 | done() 45 | } 46 | } 47 | } 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /Example/datamuse-swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 54; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | D351CFF919A77B38A1D7C19A /* Pods_datamuse_swift_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EBCCCC225EE1A86873914695 /* Pods_datamuse_swift_Example.framework */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 1068A271D56FF8550CC68C15 /* Pods-datamuse-swift_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-datamuse-swift_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-datamuse-swift_Tests/Pods-datamuse-swift_Tests.release.xcconfig"; sourceTree = ""; }; 20 | 1A675ABDB92FFDE2E1B3986B /* Pods-datamuse-swift_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-datamuse-swift_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-datamuse-swift_Tests/Pods-datamuse-swift_Tests.debug.xcconfig"; sourceTree = ""; }; 21 | 24D3B9C422CD223C02C19BBA /* Pods_datamuse_swift_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_datamuse_swift_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 22 | 4EF669C81A64C91CCA99421D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 23 | 607FACD01AFB9204008FA782 /* datamuse-swift_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "datamuse-swift_Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 24 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 25 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 26 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 27 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 28 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 29 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 30 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 31 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 32 | AA64C6DDDC9BDC5EF53EA857 /* datamuse-swift.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = "datamuse-swift.podspec"; path = "../datamuse-swift.podspec"; sourceTree = ""; }; 33 | B583F19FBBE91D7EEEB27CC8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 34 | EBCCCC225EE1A86873914695 /* Pods_datamuse_swift_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_datamuse_swift_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | FC4AF98089DAB116EA8558C9 /* Pods-datamuse-swift_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-datamuse-swift_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.debug.xcconfig"; sourceTree = ""; }; 36 | FFFD5471FB9D923626CBE99A /* Pods-datamuse-swift_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-datamuse-swift_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example.release.xcconfig"; sourceTree = ""; }; 37 | /* End PBXFileReference section */ 38 | 39 | /* Begin PBXFrameworksBuildPhase section */ 40 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 41 | isa = PBXFrameworksBuildPhase; 42 | buildActionMask = 2147483647; 43 | files = ( 44 | D351CFF919A77B38A1D7C19A /* Pods_datamuse_swift_Example.framework in Frameworks */, 45 | ); 46 | runOnlyForDeploymentPostprocessing = 0; 47 | }; 48 | /* End PBXFrameworksBuildPhase section */ 49 | 50 | /* Begin PBXGroup section */ 51 | 607FACC71AFB9204008FA782 = { 52 | isa = PBXGroup; 53 | children = ( 54 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 55 | 607FACD21AFB9204008FA782 /* Example for datamuse-swift */, 56 | 607FACE81AFB9204008FA782 /* Tests */, 57 | 607FACD11AFB9204008FA782 /* Products */, 58 | 7E63154A626C5DE57B559F8B /* Pods */, 59 | C94151EE2C7C30852C6C91BF /* Frameworks */, 60 | ); 61 | sourceTree = ""; 62 | }; 63 | 607FACD11AFB9204008FA782 /* Products */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | 607FACD01AFB9204008FA782 /* datamuse-swift_Example.app */, 67 | ); 68 | name = Products; 69 | sourceTree = ""; 70 | }; 71 | 607FACD21AFB9204008FA782 /* Example for datamuse-swift */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 75 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 76 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 77 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 78 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 79 | 607FACD31AFB9204008FA782 /* Supporting Files */, 80 | ); 81 | name = "Example for datamuse-swift"; 82 | path = "datamuse-swift"; 83 | sourceTree = ""; 84 | }; 85 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 86 | isa = PBXGroup; 87 | children = ( 88 | 607FACD41AFB9204008FA782 /* Info.plist */, 89 | ); 90 | name = "Supporting Files"; 91 | sourceTree = ""; 92 | }; 93 | 607FACE81AFB9204008FA782 /* Tests */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 97 | 607FACE91AFB9204008FA782 /* Supporting Files */, 98 | ); 99 | path = Tests; 100 | sourceTree = ""; 101 | }; 102 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 607FACEA1AFB9204008FA782 /* Info.plist */, 106 | ); 107 | name = "Supporting Files"; 108 | sourceTree = ""; 109 | }; 110 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | AA64C6DDDC9BDC5EF53EA857 /* datamuse-swift.podspec */, 114 | B583F19FBBE91D7EEEB27CC8 /* README.md */, 115 | 4EF669C81A64C91CCA99421D /* LICENSE */, 116 | ); 117 | name = "Podspec Metadata"; 118 | sourceTree = ""; 119 | }; 120 | 7E63154A626C5DE57B559F8B /* Pods */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | FC4AF98089DAB116EA8558C9 /* Pods-datamuse-swift_Example.debug.xcconfig */, 124 | FFFD5471FB9D923626CBE99A /* Pods-datamuse-swift_Example.release.xcconfig */, 125 | 1A675ABDB92FFDE2E1B3986B /* Pods-datamuse-swift_Tests.debug.xcconfig */, 126 | 1068A271D56FF8550CC68C15 /* Pods-datamuse-swift_Tests.release.xcconfig */, 127 | ); 128 | name = Pods; 129 | sourceTree = ""; 130 | }; 131 | C94151EE2C7C30852C6C91BF /* Frameworks */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | EBCCCC225EE1A86873914695 /* Pods_datamuse_swift_Example.framework */, 135 | 24D3B9C422CD223C02C19BBA /* Pods_datamuse_swift_Tests.framework */, 136 | ); 137 | name = Frameworks; 138 | sourceTree = ""; 139 | }; 140 | /* End PBXGroup section */ 141 | 142 | /* Begin PBXNativeTarget section */ 143 | 607FACCF1AFB9204008FA782 /* datamuse-swift_Example */ = { 144 | isa = PBXNativeTarget; 145 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "datamuse-swift_Example" */; 146 | buildPhases = ( 147 | D5D0D7B95D587A9C81D7D26B /* [CP] Check Pods Manifest.lock */, 148 | 607FACCC1AFB9204008FA782 /* Sources */, 149 | 607FACCD1AFB9204008FA782 /* Frameworks */, 150 | 607FACCE1AFB9204008FA782 /* Resources */, 151 | B7E487D97B00F0E645C60E8D /* [CP] Embed Pods Frameworks */, 152 | ); 153 | buildRules = ( 154 | ); 155 | dependencies = ( 156 | ); 157 | name = "datamuse-swift_Example"; 158 | productName = "datamuse-swift"; 159 | productReference = 607FACD01AFB9204008FA782 /* datamuse-swift_Example.app */; 160 | productType = "com.apple.product-type.application"; 161 | }; 162 | /* End PBXNativeTarget section */ 163 | 164 | /* Begin PBXProject section */ 165 | 607FACC81AFB9204008FA782 /* Project object */ = { 166 | isa = PBXProject; 167 | attributes = { 168 | BuildIndependentTargetsInParallel = YES; 169 | LastSwiftUpdateCheck = 0830; 170 | LastUpgradeCheck = 1540; 171 | ORGANIZATIONNAME = CocoaPods; 172 | TargetAttributes = { 173 | 607FACCF1AFB9204008FA782 = { 174 | CreatedOnToolsVersion = 6.3.1; 175 | DevelopmentTeam = 54JDK55DR5; 176 | LastSwiftMigration = 1540; 177 | }; 178 | }; 179 | }; 180 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "datamuse-swift" */; 181 | compatibilityVersion = "Xcode 3.2"; 182 | developmentRegion = English; 183 | hasScannedForEncodings = 0; 184 | knownRegions = ( 185 | English, 186 | en, 187 | Base, 188 | ); 189 | mainGroup = 607FACC71AFB9204008FA782; 190 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 191 | projectDirPath = ""; 192 | projectRoot = ""; 193 | targets = ( 194 | 607FACCF1AFB9204008FA782 /* datamuse-swift_Example */, 195 | ); 196 | }; 197 | /* End PBXProject section */ 198 | 199 | /* Begin PBXResourcesBuildPhase section */ 200 | 607FACCE1AFB9204008FA782 /* Resources */ = { 201 | isa = PBXResourcesBuildPhase; 202 | buildActionMask = 2147483647; 203 | files = ( 204 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 205 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 206 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 207 | ); 208 | runOnlyForDeploymentPostprocessing = 0; 209 | }; 210 | /* End PBXResourcesBuildPhase section */ 211 | 212 | /* Begin PBXShellScriptBuildPhase section */ 213 | B7E487D97B00F0E645C60E8D /* [CP] Embed Pods Frameworks */ = { 214 | isa = PBXShellScriptBuildPhase; 215 | buildActionMask = 2147483647; 216 | files = ( 217 | ); 218 | inputPaths = ( 219 | "${PODS_ROOT}/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-frameworks.sh", 220 | "${BUILT_PRODUCTS_DIR}/datamuse-swift/datamuse_swift.framework", 221 | ); 222 | name = "[CP] Embed Pods Frameworks"; 223 | outputPaths = ( 224 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/datamuse_swift.framework", 225 | ); 226 | runOnlyForDeploymentPostprocessing = 0; 227 | shellPath = /bin/sh; 228 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-datamuse-swift_Example/Pods-datamuse-swift_Example-frameworks.sh\"\n"; 229 | showEnvVarsInLog = 0; 230 | }; 231 | D5D0D7B95D587A9C81D7D26B /* [CP] Check Pods Manifest.lock */ = { 232 | isa = PBXShellScriptBuildPhase; 233 | buildActionMask = 2147483647; 234 | files = ( 235 | ); 236 | inputPaths = ( 237 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 238 | "${PODS_ROOT}/Manifest.lock", 239 | ); 240 | name = "[CP] Check Pods Manifest.lock"; 241 | outputPaths = ( 242 | "$(DERIVED_FILE_DIR)/Pods-datamuse-swift_Example-checkManifestLockResult.txt", 243 | ); 244 | runOnlyForDeploymentPostprocessing = 0; 245 | shellPath = /bin/sh; 246 | 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"; 247 | showEnvVarsInLog = 0; 248 | }; 249 | /* End PBXShellScriptBuildPhase section */ 250 | 251 | /* Begin PBXSourcesBuildPhase section */ 252 | 607FACCC1AFB9204008FA782 /* Sources */ = { 253 | isa = PBXSourcesBuildPhase; 254 | buildActionMask = 2147483647; 255 | files = ( 256 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 257 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXSourcesBuildPhase section */ 262 | 263 | /* Begin PBXVariantGroup section */ 264 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 265 | isa = PBXVariantGroup; 266 | children = ( 267 | 607FACDA1AFB9204008FA782 /* Base */, 268 | ); 269 | name = Main.storyboard; 270 | sourceTree = ""; 271 | }; 272 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 273 | isa = PBXVariantGroup; 274 | children = ( 275 | 607FACDF1AFB9204008FA782 /* Base */, 276 | ); 277 | name = LaunchScreen.xib; 278 | sourceTree = ""; 279 | }; 280 | /* End PBXVariantGroup section */ 281 | 282 | /* Begin XCBuildConfiguration section */ 283 | 607FACED1AFB9204008FA782 /* Debug */ = { 284 | isa = XCBuildConfiguration; 285 | buildSettings = { 286 | ALWAYS_SEARCH_USER_PATHS = NO; 287 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 288 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 289 | CLANG_CXX_LIBRARY = "libc++"; 290 | CLANG_ENABLE_MODULES = YES; 291 | CLANG_ENABLE_OBJC_ARC = YES; 292 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 293 | CLANG_WARN_BOOL_CONVERSION = YES; 294 | CLANG_WARN_COMMA = YES; 295 | CLANG_WARN_CONSTANT_CONVERSION = YES; 296 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 297 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 298 | CLANG_WARN_EMPTY_BODY = YES; 299 | CLANG_WARN_ENUM_CONVERSION = YES; 300 | CLANG_WARN_INFINITE_RECURSION = YES; 301 | CLANG_WARN_INT_CONVERSION = YES; 302 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 303 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 304 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 305 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 306 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 307 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 308 | CLANG_WARN_STRICT_PROTOTYPES = YES; 309 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 310 | CLANG_WARN_UNREACHABLE_CODE = YES; 311 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 312 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 313 | COPY_PHASE_STRIP = NO; 314 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 315 | ENABLE_STRICT_OBJC_MSGSEND = YES; 316 | ENABLE_TESTABILITY = YES; 317 | ENABLE_USER_SCRIPT_SANDBOXING = YES; 318 | GCC_C_LANGUAGE_STANDARD = gnu99; 319 | GCC_DYNAMIC_NO_PIC = NO; 320 | GCC_NO_COMMON_BLOCKS = YES; 321 | GCC_OPTIMIZATION_LEVEL = 0; 322 | GCC_PREPROCESSOR_DEFINITIONS = ( 323 | "DEBUG=1", 324 | "$(inherited)", 325 | ); 326 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 327 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 328 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 329 | GCC_WARN_UNDECLARED_SELECTOR = YES; 330 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 331 | GCC_WARN_UNUSED_FUNCTION = YES; 332 | GCC_WARN_UNUSED_VARIABLE = YES; 333 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 334 | MTL_ENABLE_DEBUG_INFO = YES; 335 | ONLY_ACTIVE_ARCH = YES; 336 | SDKROOT = iphoneos; 337 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 338 | }; 339 | name = Debug; 340 | }; 341 | 607FACEE1AFB9204008FA782 /* Release */ = { 342 | isa = XCBuildConfiguration; 343 | buildSettings = { 344 | ALWAYS_SEARCH_USER_PATHS = NO; 345 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 346 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 347 | CLANG_CXX_LIBRARY = "libc++"; 348 | CLANG_ENABLE_MODULES = YES; 349 | CLANG_ENABLE_OBJC_ARC = YES; 350 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 351 | CLANG_WARN_BOOL_CONVERSION = YES; 352 | CLANG_WARN_COMMA = YES; 353 | CLANG_WARN_CONSTANT_CONVERSION = YES; 354 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 355 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 356 | CLANG_WARN_EMPTY_BODY = YES; 357 | CLANG_WARN_ENUM_CONVERSION = YES; 358 | CLANG_WARN_INFINITE_RECURSION = YES; 359 | CLANG_WARN_INT_CONVERSION = YES; 360 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 361 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 362 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 363 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 364 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 365 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 366 | CLANG_WARN_STRICT_PROTOTYPES = YES; 367 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 368 | CLANG_WARN_UNREACHABLE_CODE = YES; 369 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 370 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 371 | COPY_PHASE_STRIP = NO; 372 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 373 | ENABLE_NS_ASSERTIONS = NO; 374 | ENABLE_STRICT_OBJC_MSGSEND = YES; 375 | ENABLE_USER_SCRIPT_SANDBOXING = YES; 376 | GCC_C_LANGUAGE_STANDARD = gnu99; 377 | GCC_NO_COMMON_BLOCKS = YES; 378 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 379 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 380 | GCC_WARN_UNDECLARED_SELECTOR = YES; 381 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 382 | GCC_WARN_UNUSED_FUNCTION = YES; 383 | GCC_WARN_UNUSED_VARIABLE = YES; 384 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 385 | MTL_ENABLE_DEBUG_INFO = NO; 386 | SDKROOT = iphoneos; 387 | SWIFT_COMPILATION_MODE = wholemodule; 388 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 389 | VALIDATE_PRODUCT = YES; 390 | }; 391 | name = Release; 392 | }; 393 | 607FACF01AFB9204008FA782 /* Debug */ = { 394 | isa = XCBuildConfiguration; 395 | baseConfigurationReference = FC4AF98089DAB116EA8558C9 /* Pods-datamuse-swift_Example.debug.xcconfig */; 396 | buildSettings = { 397 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 398 | DEVELOPMENT_TEAM = 54JDK55DR5; 399 | ENABLE_USER_SCRIPT_SANDBOXING = NO; 400 | INFOPLIST_FILE = "datamuse-swift/Info.plist"; 401 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 402 | LD_RUNPATH_SEARCH_PATHS = ( 403 | "$(inherited)", 404 | "@executable_path/Frameworks", 405 | ); 406 | MODULE_NAME = ExampleApp; 407 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 408 | PRODUCT_NAME = "$(TARGET_NAME)"; 409 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 410 | SWIFT_VERSION = 5.0; 411 | }; 412 | name = Debug; 413 | }; 414 | 607FACF11AFB9204008FA782 /* Release */ = { 415 | isa = XCBuildConfiguration; 416 | baseConfigurationReference = FFFD5471FB9D923626CBE99A /* Pods-datamuse-swift_Example.release.xcconfig */; 417 | buildSettings = { 418 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 419 | DEVELOPMENT_TEAM = 54JDK55DR5; 420 | ENABLE_USER_SCRIPT_SANDBOXING = NO; 421 | INFOPLIST_FILE = "datamuse-swift/Info.plist"; 422 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 423 | LD_RUNPATH_SEARCH_PATHS = ( 424 | "$(inherited)", 425 | "@executable_path/Frameworks", 426 | ); 427 | MODULE_NAME = ExampleApp; 428 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 429 | PRODUCT_NAME = "$(TARGET_NAME)"; 430 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 431 | SWIFT_VERSION = 5.0; 432 | }; 433 | name = Release; 434 | }; 435 | /* End XCBuildConfiguration section */ 436 | 437 | /* Begin XCConfigurationList section */ 438 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "datamuse-swift" */ = { 439 | isa = XCConfigurationList; 440 | buildConfigurations = ( 441 | 607FACED1AFB9204008FA782 /* Debug */, 442 | 607FACEE1AFB9204008FA782 /* Release */, 443 | ); 444 | defaultConfigurationIsVisible = 0; 445 | defaultConfigurationName = Release; 446 | }; 447 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "datamuse-swift_Example" */ = { 448 | isa = XCConfigurationList; 449 | buildConfigurations = ( 450 | 607FACF01AFB9204008FA782 /* Debug */, 451 | 607FACF11AFB9204008FA782 /* Release */, 452 | ); 453 | defaultConfigurationIsVisible = 0; 454 | defaultConfigurationName = Release; 455 | }; 456 | /* End XCConfigurationList section */ 457 | }; 458 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 459 | } 460 | -------------------------------------------------------------------------------- /Example/datamuse-swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/datamuse-swift.xcodeproj/xcshareddata/xcschemes/datamuse-swift-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 51 | 52 | 53 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 76 | 78 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /Example/datamuse-swift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/datamuse-swift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/datamuse-swift.xcworkspace/xcuserdata/developer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezefranca/datamuse-swift/c78df49ab7f499a3f5be2b78fa139d7ac4e4c642/Example/datamuse-swift.xcworkspace/xcuserdata/developer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/datamuse-swift.xcworkspace/xcuserdata/developer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 20 | 21 | 22 | 24 | 36 | 37 | 38 | 40 | 52 | 53 | 54 | 56 | 68 | 69 | 70 | 72 | 84 | 85 | 86 | 88 | 100 | 101 | 102 | 104 | 116 | 117 | 118 | 120 | 132 | 133 | 134 | 136 | 148 | 149 | 150 | 152 | 164 | 165 | 166 | 168 | 180 | 181 | 182 | 184 | 196 | 197 | 198 | 200 | 212 | 213 | 214 | 216 | 228 | 229 | 230 | 232 | 244 | 245 | 246 | 248 | 260 | 261 | 262 | 264 | 276 | 277 | 278 | 279 | 280 | -------------------------------------------------------------------------------- /Example/datamuse-swift/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // datamuse-swift 4 | // 5 | // Created by ezefranca on 11/11/2017. 6 | // Copyright (c) 2017 ezefranca. 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: [UIApplication.LaunchOptionsKey: 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/datamuse-swift/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example/datamuse-swift/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 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /Example/datamuse-swift/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Example/datamuse-swift/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 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/datamuse-swift/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // datamuse-swift 4 | // 5 | // Created by ezefranca on 11/11/2017. 6 | // Copyright (c) 2017 ezefranca. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import datamuse_swift 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBOutlet var input: UITextField! 15 | @IBOutlet var result: UITextView! 16 | @IBOutlet var search: UIButton! 17 | 18 | private let dataMuseClient = DataMuseClient() 19 | 20 | override func viewDidLoad() { 21 | super.viewDidLoad() 22 | } 23 | 24 | @IBAction func searchTapped(_ sender: UIButton) { 25 | guard let text = input.text, !text.isEmpty else { 26 | result.text = "Please enter a word to search." 27 | return 28 | } 29 | 30 | result.text = "Searching..." 31 | 32 | Task { 33 | do { 34 | let words = try await dataMuseClient.fetchWords(endpoint: .similarWords(to: text)) 35 | 36 | DispatchQueue.main.async { 37 | if words.isEmpty { 38 | self.result.text = "No similar words found." 39 | } else { 40 | self.result.text = words.map { $0.word }.joined(separator: "\n") 41 | } 42 | } 43 | } catch { 44 | DispatchQueue.main.async { 45 | self.result.text = "An error occurred: \(error.localizedDescription)" 46 | } 47 | } 48 | } 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 ezefranca 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 all 13 | 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 THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- 1 | { 2 | "object": { 3 | "pins": [ 4 | 5 | ] 6 | }, 7 | "version": 1 8 | } 9 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // 2 | // datamuse-swift.swift 3 | // datamuse-swift 4 | // 5 | // Created by Ezequiel França on 23/10/15. 6 | // Copyright © 2017 ezefranca. All rights reserved. 7 | // 8 | 9 | // swift-tools-version:5.9 10 | import PackageDescription 11 | 12 | let package = Package( 13 | name: "datamuse-swift", 14 | products: [ 15 | .library( 16 | name: "datamuse-swift", 17 | targets: ["datamuse-swift"]), 18 | ], 19 | dependencies: [], 20 | targets: [ 21 | .target( 22 | name: "datamuse-swift", 23 | dependencies: []), 24 | .testTarget( 25 | name: "datamuse-swiftTests", 26 | dependencies: ["datamuse-swift"]), 27 | ] 28 | ) 29 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # datamuse-swift 2 | 3 | [![Platforms](https://img.shields.io/cocoapods/p/datamuse-swift.svg)](https://cocoapods.org/pods/datamuse-swift) 4 | [![License](https://img.shields.io/cocoapods/l/datamuse-swift.svg)](https://raw.githubusercontent.com/ezefranca/datamuse-swift/master/LICENSE) 5 | [![Swift Package Manager](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-brightgreen.svg)](https://github.com/apple/swift-package-manager) 6 | [![CocoaPods compatible](https://img.shields.io/cocoapods/v/datamuse-swift.svg)](https://cocoapods.org/pods/datamuse-swift) 7 | 8 | [![logo](https://www.datamuse.com/api/datamuse-logo-rgb.png)](https://www.datamuse.com/api/) 9 | 10 | A Datamuse API Swift wrapper without external depedencies and support for async/await. 11 | 12 | - [Requirements](#requirements) 13 | - [Installation](#installation) 14 | - [Usage](#usage) 15 | - [Methods](#methods) 16 | - [License](#license) 17 | 18 | ## Requirements 19 | 20 | - iOS 15+ / macOS 12+ / tvOS 15+ / watchOS 8+ 21 | - Xcode 15.0+ 22 | 23 | ## Installation 24 | 25 | ### Swift Package Manager 26 | 27 | To integrate `datamuse-swift` into your Xcode project, open your project settings, navigate to the "Package Dependencies" section, and add the following URL: 28 | 29 | ``` 30 | https://github.com/ezefranca/datamuse-swift.git 31 | ``` 32 | 33 | ### CocoaPods 34 | 35 | Add the following to your `Podfile`: 36 | 37 | ```ruby 38 | platform :ios, '15.0' 39 | use_frameworks! 40 | 41 | pod 'datamuse-swift', '~> 1.0.0' 42 | ``` 43 | 44 | Run the following command to install the dependency: 45 | 46 | ```bash 47 | $ pod install 48 | ``` 49 | 50 | ### Manual Installation 51 | 52 | Clone the repository and drag the `Sources` folder into your Xcode project. 53 | 54 | ## Usage 55 | 56 | ### Getting Started 57 | 58 | First, import the library: 59 | 60 | ```swift 61 | import datamuse_swift 62 | ``` 63 | 64 | Create an instance of `DataMuseClient`: 65 | 66 | ```swift 67 | let client = DataMuseClient() 68 | ``` 69 | 70 | ### Fetching Words 71 | 72 | Use the `fetchWords` method with any of the predefined endpoints. 73 | 74 | #### Example: Fetch Similar Words 75 | 76 | ```swift 77 | Task { 78 | do { 79 | let words = try await client.fetchWords(endpoint: .similarWords(to: "ring")) 80 | words.forEach { print($0.word) } 81 | } catch { 82 | print("Error: \(error.localizedDescription)") 83 | } 84 | } 85 | ``` 86 | 87 | ## Methods 88 | 89 | The following endpoints are available: 90 | 91 | | Description | Method | 92 | |---------------------------------------------------------------|----------------------------------------------------------------------------------------------| 93 | | Words with a meaning similar to a given word | `.similarWords(to: String)` | 94 | | Words related to a word that start with a specific letter | `.wordsRelated(to: String, startingWith: String)` | 95 | | Words related to a word that end with a specific letter | `.wordsEndingWith(to: String, endingWith: String)` | 96 | | Words spelled similarly to a given word | `.wordsSpelledLike(String)` | 97 | | Words that rhyme with a given word | `.wordsThatRhyme(with: String)` | 98 | | Words that rhyme with a given word and are related | `.wordsThatRhymeWithRelated(with: String, related: String)` | 99 | | Adjectives often used to describe a word | `.adjectivesOftenUsed(toDescribe: String)` | 100 | | Adjectives describing a word sorted by related topics | `.adjectivesDescribing(this: String, related: String)` | 101 | | Nouns often described by a given adjective | `.nounsOftenDescribed(byAdjective: String)` | 102 | | Words that often follow another word in a sentence | `.wordsThatFollow(following: String, startingWith: String)` | 103 | | Words triggered by (strongly associated with) another word | `.wordsTriggered(by: String)` | 104 | | Suggestions based on partial input | `.suggestions(for: String)` | 105 | | Words that start, finish, and have a specific pattern | `.wordWithPattern(start: String, finish: String, lettersBetween: Int)` | 106 | 107 | ### Word Model 108 | 109 | All API responses return an array of `Word` objects: 110 | 111 | ```swift 112 | public struct Word: Codable { 113 | public let word: String 114 | public let score: Int? 115 | } 116 | ``` 117 | 118 | ## License 119 | 120 | `datamuse-swift` is released under the MIT license. See [LICENSE](https://github.com/ezefranca/datamuse-swift/blob/master/LICENSE) for details. 121 | -------------------------------------------------------------------------------- /Sources/Core/DataMuseClient.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DataMuseClient.swift 3 | // datamuse-swift 4 | // 5 | // Created by Ezequiel França on 09/11/17. 6 | // 7 | import Foundation 8 | 9 | public struct DataMuseClient { 10 | private let baseURL = "https://api.datamuse.com" 11 | private let session: URLSession 12 | 13 | public init(session: URLSession = .shared) { 14 | self.session = session 15 | } 16 | 17 | /// Fetch words based on the given endpoint 18 | /// - Parameter endpoint: The endpoint specifying the API request 19 | /// - Returns: Array of `Word` objects 20 | public func fetchWords(endpoint: Endpoint) async throws -> [Word] { 21 | guard let url = endpoint.url(baseURL: baseURL) else { 22 | throw DataMuseError.invalidURL 23 | } 24 | 25 | var request = URLRequest(url: url) 26 | request.httpMethod = "GET" 27 | 28 | let (data, response) = try await session.data(for: request) 29 | 30 | guard let httpResponse = response as? HTTPURLResponse, httpResponse.statusCode == 200 else { 31 | throw DataMuseError.invalidResponse 32 | } 33 | 34 | do { 35 | let decodedResponse = try JSONDecoder().decode([Word].self, from: data) 36 | return decodedResponse 37 | } catch { 38 | throw DataMuseError.decodingError(error) 39 | } 40 | } 41 | 42 | public enum DataMuseError: Error { 43 | case invalidURL 44 | case invalidResponse 45 | case decodingError(Error) 46 | } 47 | } 48 | 49 | public enum Endpoint { 50 | case similarWords(to: String) 51 | case wordsRelated(to: String, startingWith: String) 52 | case wordsEndingWith(to: String, endingWith: String) 53 | case wordsSpelledLike(String) 54 | case wordsThatRhyme(with: String) 55 | case wordsThatRhymeWithRelated(with: String, related: String) 56 | case adjectivesOftenUsed(toDescribe: String) 57 | case adjectivesDescribing(this: String, related: String) 58 | case nounsOftenDescribed(byAdjective: String) 59 | case wordsThatFollow(following: String, startingWith: String) 60 | case wordsTriggered(by: String) 61 | case suggestions(for: String) 62 | case wordWithPattern(start: String, finish: String, lettersBetween: Int) 63 | 64 | func url(baseURL: String) -> URL? { 65 | var components = URLComponents(string: baseURL) 66 | switch self { 67 | case .similarWords(let to): 68 | components?.path = "/words" 69 | components?.queryItems = [URLQueryItem(name: "ml", value: to)] 70 | case .wordsRelated(let to, let startingWith): 71 | components?.path = "/words" 72 | components?.queryItems = [ 73 | URLQueryItem(name: "ml", value: to), 74 | URLQueryItem(name: "sp", value: "\(startingWith)*") 75 | ] 76 | case .wordsEndingWith(let to, let endingWith): 77 | components?.path = "/words" 78 | components?.queryItems = [ 79 | URLQueryItem(name: "ml", value: to), 80 | URLQueryItem(name: "sp", value: "*\(endingWith)") 81 | ] 82 | case .wordsSpelledLike(let word): 83 | components?.path = "/words" 84 | components?.queryItems = [URLQueryItem(name: "sp", value: word)] 85 | case .wordsThatRhyme(let with): 86 | components?.path = "/words" 87 | components?.queryItems = [URLQueryItem(name: "rel_rhy", value: with)] 88 | case .wordsThatRhymeWithRelated(let with, let related): 89 | components?.path = "/words" 90 | components?.queryItems = [ 91 | URLQueryItem(name: "ml", value: with), 92 | URLQueryItem(name: "rel_rhy", value: related) 93 | ] 94 | case .adjectivesOftenUsed(toDescribe: let word): 95 | components?.path = "/words" 96 | components?.queryItems = [URLQueryItem(name: "rel_jjb", value: word)] 97 | case .adjectivesDescribing(let this, let related): 98 | components?.path = "/words" 99 | components?.queryItems = [ 100 | URLQueryItem(name: "rel_jjb", value: this), 101 | URLQueryItem(name: "topics", value: related) 102 | ] 103 | case .nounsOftenDescribed(byAdjective: let adjective): 104 | components?.path = "/words" 105 | components?.queryItems = [URLQueryItem(name: "rel_jja", value: adjective)] 106 | case .wordsThatFollow(let following, let startingWith): 107 | components?.path = "/words" 108 | components?.queryItems = [ 109 | URLQueryItem(name: "lc", value: following), 110 | URLQueryItem(name: "sp", value: "\(startingWith)*") 111 | ] 112 | case .wordsTriggered(by: let word): 113 | components?.path = "/words" 114 | components?.queryItems = [URLQueryItem(name: "rel_trg", value: word)] 115 | case .suggestions(let input): 116 | components?.path = "/sug" 117 | components?.queryItems = [URLQueryItem(name: "s", value: input)] 118 | case .wordWithPattern(let start, let finish, let lettersBetween): 119 | let pattern = String(repeating: "?", count: max(lettersBetween, 1)) 120 | components?.path = "/words" 121 | components?.queryItems = [URLQueryItem(name: "sp", value: "\(start)\(pattern)\(finish)")] 122 | } 123 | return components?.url 124 | } 125 | } 126 | -------------------------------------------------------------------------------- /Sources/Core/Word.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Words.swift 3 | // datamuse-swift 4 | // 5 | // Created by Ezequiel França on 09/11/17. 6 | // 7 | 8 | import Foundation 9 | 10 | public struct Word: Codable { 11 | public let word: String 12 | public let score: Int? 13 | 14 | public init(word: String, score: Int?) { 15 | self.word = word 16 | self.score = score 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Sources/Info-tvOS.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.0.1 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | UIRequiredDeviceCapabilities 24 | 25 | arm64 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Sources/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.0.1 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Sources/datamuse-swift.h: -------------------------------------------------------------------------------- 1 | // 2 | // datamuse-swift.h 3 | // datamuse-swift 4 | // 5 | // Created by Ezequiel França on 04/10/16. 6 | // Copyright © 2017 ezefranca. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for datamuse-swift. 12 | FOUNDATION_EXPORT double datamuse-swiftVersionNumber; 13 | 14 | //! Project version string for datamuse-swift. 15 | FOUNDATION_EXPORT const unsigned char datamuse-swiftVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | -------------------------------------------------------------------------------- /Tests/Info-tvOS.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 | 0.0.1 19 | CFBundleVersion 20 | 1 21 | UIRequiredDeviceCapabilities 22 | 23 | arm64 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /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 | 0.0.1 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Tests/datamuse-swiftSpec.swift: -------------------------------------------------------------------------------- 1 | // 2 | // datamuse-swiftSpec.swift 3 | // datamuse-swift 4 | // 5 | // Created by Ezequiel França on 04/10/16. 6 | // Copyright © 2017 ezefranca. All rights reserved. 7 | // 8 | 9 | import Quick 10 | import Nimble 11 | @testable import datamuse-swift 12 | 13 | class datamuse-swiftSpec: QuickSpec { 14 | 15 | override func spec() { 16 | 17 | describe("datamuse-swiftSpec") { 18 | it("works") { 19 | expect(datamuse-swift.name) == "datamuse-swift" 20 | } 21 | } 22 | 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /datamuse-swift.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | //: Playground - noun: a place where people can play 2 | 3 | import datamuse-swift 4 | 5 | var str = "Hello, playground" 6 | -------------------------------------------------------------------------------- /datamuse-swift.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /datamuse-swift.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'datamuse-swift' 3 | s.version = '1.0.0' # Updated version 4 | s.license = { :type => "MIT", :file => "LICENSE" } 5 | s.summary = 'A modern Datamuse API Swift wrapper with support for async/await' 6 | s.homepage = 'http://ezefranca.com' 7 | s.social_media_url = 'https://github.com/ezefranca/datamuse-swift' 8 | s.authors = { "Ezequiel França" => "ezequiel.ifsp@gmail.com" } 9 | s.source = { :git => "https://github.com/ezefranca/datamuse-swift.git", :tag => s.version.to_s } 10 | 11 | # Updated platform versions for modern concurrency features 12 | s.platforms = { 13 | :ios => "15.0", 14 | :osx => "12.0", 15 | :watchos => "8.0" 16 | } 17 | 18 | s.default_subspec = "Core" 19 | 20 | s.subspec "Core" do |ss| 21 | ss.source_files = "Sources/**/*.swift" 22 | ss.frameworks = "Foundation" 23 | end 24 | end 25 | -------------------------------------------------------------------------------- /datamuse-swift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3549BB501DA38A2000C63030 /* datamuse-swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 3549BB181DA3890B00C63030 /* datamuse-swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 3549BB511DA38A2000C63030 /* datamuse-swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 3549BB181DA3890B00C63030 /* datamuse-swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 3549BB521DA38A2100C63030 /* datamuse-swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 3549BB181DA3890B00C63030 /* datamuse-swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 3549BB531DA38A2200C63030 /* datamuse-swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 3549BB181DA3890B00C63030 /* datamuse-swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 3549BB661DA38ADB00C63030 /* datamuse-swift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3549BB211DA389CD00C63030 /* datamuse-swift.framework */; }; 15 | 3549BB751DA38AEF00C63030 /* datamuse-swift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3549BB481DA389F300C63030 /* datamuse-swift.framework */; }; 16 | 3549BB841DA38B0000C63030 /* datamuse-swift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3549BB3B1DA389E800C63030 /* datamuse-swift.framework */; }; 17 | 3549BB8B1DA38C0A00C63030 /* datamuse-swiftSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3549BB8A1DA38C0A00C63030 /* datamuse-swiftSpec.swift */; }; 18 | 3549BB8C1DA38C0A00C63030 /* datamuse-swiftSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3549BB8A1DA38C0A00C63030 /* datamuse-swiftSpec.swift */; }; 19 | 3549BB8D1DA38C0A00C63030 /* datamuse-swiftSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3549BB8A1DA38C0A00C63030 /* datamuse-swiftSpec.swift */; }; 20 | 354AD5861F8A659800B18FAE /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 354AD5841F8A659800B18FAE /* Quick.framework */; }; 21 | 354AD5871F8A659800B18FAE /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 354AD5851F8A659800B18FAE /* Nimble.framework */; }; 22 | 354AD5881F8A65B500B18FAE /* Nimble.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 354AD5851F8A659800B18FAE /* Nimble.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 23 | 354AD5891F8A65B500B18FAE /* Quick.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 354AD5841F8A659800B18FAE /* Quick.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 24 | 35B7422F1F82A5E000829B21 /* Nimble.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 35B7422D1F82A5DF00829B21 /* Nimble.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 25 | 35B742301F82A5E000829B21 /* Quick.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 35B7422E1F82A5E000829B21 /* Quick.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 26 | 35B742311F82A5EC00829B21 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35B7422D1F82A5DF00829B21 /* Nimble.framework */; }; 27 | 35B742321F82A5EC00829B21 /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35B7422E1F82A5E000829B21 /* Quick.framework */; }; 28 | 35B742361F82A61E00829B21 /* Nimble.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 35B742341F82A61D00829B21 /* Nimble.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 29 | 35B742371F82A61E00829B21 /* Quick.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 35B742351F82A61E00829B21 /* Quick.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 30 | 35B742381F82A62900829B21 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35B742341F82A61D00829B21 /* Nimble.framework */; }; 31 | 35B742391F82A62900829B21 /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35B742351F82A61E00829B21 /* Quick.framework */; }; 32 | 8B7138161FB72D510009D5FF /* DataMuseClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138131FB72D510009D5FF /* DataMuseClient.swift */; }; 33 | 8B7138171FB72D510009D5FF /* DataMuseClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138131FB72D510009D5FF /* DataMuseClient.swift */; }; 34 | 8B7138181FB72D510009D5FF /* DataMuseClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138131FB72D510009D5FF /* DataMuseClient.swift */; }; 35 | 8B7138191FB72D510009D5FF /* DataMuseClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138131FB72D510009D5FF /* DataMuseClient.swift */; }; 36 | 8B71381A1FB72D510009D5FF /* DataRequester.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138141FB72D510009D5FF /* DataRequester.swift */; }; 37 | 8B71381B1FB72D510009D5FF /* DataRequester.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138141FB72D510009D5FF /* DataRequester.swift */; }; 38 | 8B71381C1FB72D510009D5FF /* DataRequester.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138141FB72D510009D5FF /* DataRequester.swift */; }; 39 | 8B71381D1FB72D510009D5FF /* DataRequester.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138141FB72D510009D5FF /* DataRequester.swift */; }; 40 | 8B71381E1FB72D510009D5FF /* Words.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138151FB72D510009D5FF /* Words.swift */; }; 41 | 8B71381F1FB72D510009D5FF /* Words.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138151FB72D510009D5FF /* Words.swift */; }; 42 | 8B7138201FB72D510009D5FF /* Words.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138151FB72D510009D5FF /* Words.swift */; }; 43 | 8B7138211FB72D510009D5FF /* Words.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7138151FB72D510009D5FF /* Words.swift */; }; 44 | /* End PBXBuildFile section */ 45 | 46 | /* Begin PBXContainerItemProxy section */ 47 | 3549BB671DA38ADB00C63030 /* PBXContainerItemProxy */ = { 48 | isa = PBXContainerItemProxy; 49 | containerPortal = 3549BAFC1DA387DB00C63030 /* Project object */; 50 | proxyType = 1; 51 | remoteGlobalIDString = 3549BB201DA389CD00C63030; 52 | remoteInfo = "datamuse-swift-iOS"; 53 | }; 54 | 3549BB761DA38AEF00C63030 /* PBXContainerItemProxy */ = { 55 | isa = PBXContainerItemProxy; 56 | containerPortal = 3549BAFC1DA387DB00C63030 /* Project object */; 57 | proxyType = 1; 58 | remoteGlobalIDString = 3549BB471DA389F300C63030; 59 | remoteInfo = "datamuse-swift-tvOS"; 60 | }; 61 | 3549BB851DA38B0000C63030 /* PBXContainerItemProxy */ = { 62 | isa = PBXContainerItemProxy; 63 | containerPortal = 3549BAFC1DA387DB00C63030 /* Project object */; 64 | proxyType = 1; 65 | remoteGlobalIDString = 3549BB3A1DA389E800C63030; 66 | remoteInfo = "datamuse-swift-macOS"; 67 | }; 68 | /* End PBXContainerItemProxy section */ 69 | 70 | /* Begin PBXCopyFilesBuildPhase section */ 71 | 35B7422C1F82A2C700829B21 /* Embed Frameworks */ = { 72 | isa = PBXCopyFilesBuildPhase; 73 | buildActionMask = 2147483647; 74 | dstPath = ""; 75 | dstSubfolderSpec = 10; 76 | files = ( 77 | 35B7422F1F82A5E000829B21 /* Nimble.framework in Embed Frameworks */, 78 | 35B742301F82A5E000829B21 /* Quick.framework in Embed Frameworks */, 79 | ); 80 | name = "Embed Frameworks"; 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | 35B742331F82A60600829B21 /* Embed Frameworks */ = { 84 | isa = PBXCopyFilesBuildPhase; 85 | buildActionMask = 2147483647; 86 | dstPath = ""; 87 | dstSubfolderSpec = 10; 88 | files = ( 89 | 35B742361F82A61E00829B21 /* Nimble.framework in Embed Frameworks */, 90 | 35B742371F82A61E00829B21 /* Quick.framework in Embed Frameworks */, 91 | ); 92 | name = "Embed Frameworks"; 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | 35B7423A1F82A63600829B21 /* Embed Frameworks */ = { 96 | isa = PBXCopyFilesBuildPhase; 97 | buildActionMask = 2147483647; 98 | dstPath = ""; 99 | dstSubfolderSpec = 10; 100 | files = ( 101 | 354AD5881F8A65B500B18FAE /* Nimble.framework in Embed Frameworks */, 102 | 354AD5891F8A65B500B18FAE /* Quick.framework in Embed Frameworks */, 103 | ); 104 | name = "Embed Frameworks"; 105 | runOnlyForDeploymentPostprocessing = 0; 106 | }; 107 | /* End PBXCopyFilesBuildPhase section */ 108 | 109 | /* Begin PBXFileReference section */ 110 | 3549BB171DA3890B00C63030 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 111 | 3549BB181DA3890B00C63030 /* datamuse-swift.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "datamuse-swift.h"; sourceTree = ""; }; 112 | 3549BB211DA389CD00C63030 /* datamuse-swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "datamuse-swift.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 113 | 3549BB2E1DA389DB00C63030 /* datamuse-swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "datamuse-swift.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 114 | 3549BB3B1DA389E800C63030 /* datamuse-swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "datamuse-swift.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 115 | 3549BB481DA389F300C63030 /* datamuse-swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = "datamuse-swift.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 116 | 3549BB551DA38A5E00C63030 /* Info-tvOS.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-tvOS.plist"; sourceTree = ""; }; 117 | 3549BB571DA38A8800C63030 /* Info-tvOS.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-tvOS.plist"; sourceTree = ""; }; 118 | 3549BB581DA38A8800C63030 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 119 | 3549BB611DA38ADB00C63030 /* datamuse-swiftTests-iOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "datamuse-swiftTests-iOS.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 120 | 3549BB701DA38AEF00C63030 /* datamuse-swiftTests-tvOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "datamuse-swiftTests-tvOS.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 121 | 3549BB7F1DA38B0000C63030 /* datamuse-swiftTests-macOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "datamuse-swiftTests-macOS.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 122 | 3549BB8A1DA38C0A00C63030 /* datamuse-swiftSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "datamuse-swiftSpec.swift"; sourceTree = ""; }; 123 | 354AD5841F8A659800B18FAE /* Quick.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quick.framework; path = Carthage/Build/tvOS/Quick.framework; sourceTree = ""; }; 124 | 354AD5851F8A659800B18FAE /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Nimble.framework; path = Carthage/Build/tvOS/Nimble.framework; sourceTree = ""; }; 125 | 35B7422D1F82A5DF00829B21 /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Nimble.framework; path = Carthage/Build/iOS/Nimble.framework; sourceTree = ""; }; 126 | 35B7422E1F82A5E000829B21 /* Quick.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quick.framework; path = Carthage/Build/iOS/Quick.framework; sourceTree = ""; }; 127 | 35B742341F82A61D00829B21 /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Nimble.framework; path = Carthage/Build/Mac/Nimble.framework; sourceTree = ""; }; 128 | 35B742351F82A61E00829B21 /* Quick.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quick.framework; path = Carthage/Build/Mac/Quick.framework; sourceTree = ""; }; 129 | 8B7138131FB72D510009D5FF /* DataMuseClient.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DataMuseClient.swift; sourceTree = ""; }; 130 | 8B7138141FB72D510009D5FF /* DataRequester.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DataRequester.swift; sourceTree = ""; }; 131 | 8B7138151FB72D510009D5FF /* Words.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Words.swift; sourceTree = ""; }; 132 | /* End PBXFileReference section */ 133 | 134 | /* Begin PBXFrameworksBuildPhase section */ 135 | 3549BB1D1DA389CD00C63030 /* Frameworks */ = { 136 | isa = PBXFrameworksBuildPhase; 137 | buildActionMask = 2147483647; 138 | files = ( 139 | ); 140 | runOnlyForDeploymentPostprocessing = 0; 141 | }; 142 | 3549BB2A1DA389DB00C63030 /* Frameworks */ = { 143 | isa = PBXFrameworksBuildPhase; 144 | buildActionMask = 2147483647; 145 | files = ( 146 | ); 147 | runOnlyForDeploymentPostprocessing = 0; 148 | }; 149 | 3549BB371DA389E800C63030 /* Frameworks */ = { 150 | isa = PBXFrameworksBuildPhase; 151 | buildActionMask = 2147483647; 152 | files = ( 153 | ); 154 | runOnlyForDeploymentPostprocessing = 0; 155 | }; 156 | 3549BB441DA389F300C63030 /* Frameworks */ = { 157 | isa = PBXFrameworksBuildPhase; 158 | buildActionMask = 2147483647; 159 | files = ( 160 | ); 161 | runOnlyForDeploymentPostprocessing = 0; 162 | }; 163 | 3549BB5E1DA38ADB00C63030 /* Frameworks */ = { 164 | isa = PBXFrameworksBuildPhase; 165 | buildActionMask = 2147483647; 166 | files = ( 167 | 35B742311F82A5EC00829B21 /* Nimble.framework in Frameworks */, 168 | 35B742321F82A5EC00829B21 /* Quick.framework in Frameworks */, 169 | 3549BB661DA38ADB00C63030 /* datamuse-swift.framework in Frameworks */, 170 | ); 171 | runOnlyForDeploymentPostprocessing = 0; 172 | }; 173 | 3549BB6D1DA38AEF00C63030 /* Frameworks */ = { 174 | isa = PBXFrameworksBuildPhase; 175 | buildActionMask = 2147483647; 176 | files = ( 177 | 354AD5861F8A659800B18FAE /* Quick.framework in Frameworks */, 178 | 354AD5871F8A659800B18FAE /* Nimble.framework in Frameworks */, 179 | 3549BB751DA38AEF00C63030 /* datamuse-swift.framework in Frameworks */, 180 | ); 181 | runOnlyForDeploymentPostprocessing = 0; 182 | }; 183 | 3549BB7C1DA38B0000C63030 /* Frameworks */ = { 184 | isa = PBXFrameworksBuildPhase; 185 | buildActionMask = 2147483647; 186 | files = ( 187 | 35B742381F82A62900829B21 /* Nimble.framework in Frameworks */, 188 | 35B742391F82A62900829B21 /* Quick.framework in Frameworks */, 189 | 3549BB841DA38B0000C63030 /* datamuse-swift.framework in Frameworks */, 190 | ); 191 | runOnlyForDeploymentPostprocessing = 0; 192 | }; 193 | /* End PBXFrameworksBuildPhase section */ 194 | 195 | /* Begin PBXGroup section */ 196 | 3549BAFB1DA387DB00C63030 = { 197 | isa = PBXGroup; 198 | children = ( 199 | 3549BB161DA3890B00C63030 /* Sources */, 200 | 3549BB191DA3890B00C63030 /* Tests */, 201 | 3549BB061DA387DB00C63030 /* Products */, 202 | 357D954B1DA3F2B400AEC55F /* Frameworks */, 203 | ); 204 | sourceTree = ""; 205 | }; 206 | 3549BB061DA387DB00C63030 /* Products */ = { 207 | isa = PBXGroup; 208 | children = ( 209 | 3549BB211DA389CD00C63030 /* datamuse-swift.framework */, 210 | 3549BB2E1DA389DB00C63030 /* datamuse-swift.framework */, 211 | 3549BB3B1DA389E800C63030 /* datamuse-swift.framework */, 212 | 3549BB481DA389F300C63030 /* datamuse-swift.framework */, 213 | 3549BB611DA38ADB00C63030 /* datamuse-swiftTests-iOS.xctest */, 214 | 3549BB701DA38AEF00C63030 /* datamuse-swiftTests-tvOS.xctest */, 215 | 3549BB7F1DA38B0000C63030 /* datamuse-swiftTests-macOS.xctest */, 216 | ); 217 | name = Products; 218 | sourceTree = ""; 219 | }; 220 | 3549BB161DA3890B00C63030 /* Sources */ = { 221 | isa = PBXGroup; 222 | children = ( 223 | 359649011FB18CBF00FC7ADC /* Core */, 224 | 3549BB541DA38A4000C63030 /* Supporting Files */, 225 | ); 226 | path = Sources; 227 | sourceTree = ""; 228 | }; 229 | 3549BB191DA3890B00C63030 /* Tests */ = { 230 | isa = PBXGroup; 231 | children = ( 232 | 3549BB8A1DA38C0A00C63030 /* datamuse-swiftSpec.swift */, 233 | 3549BB5B1DA38A8C00C63030 /* Supporting Files */, 234 | ); 235 | path = Tests; 236 | sourceTree = ""; 237 | }; 238 | 3549BB541DA38A4000C63030 /* Supporting Files */ = { 239 | isa = PBXGroup; 240 | children = ( 241 | 3549BB181DA3890B00C63030 /* datamuse-swift.h */, 242 | 3549BB171DA3890B00C63030 /* Info.plist */, 243 | 3549BB551DA38A5E00C63030 /* Info-tvOS.plist */, 244 | ); 245 | name = "Supporting Files"; 246 | sourceTree = ""; 247 | }; 248 | 3549BB5B1DA38A8C00C63030 /* Supporting Files */ = { 249 | isa = PBXGroup; 250 | children = ( 251 | 3549BB581DA38A8800C63030 /* Info.plist */, 252 | 3549BB571DA38A8800C63030 /* Info-tvOS.plist */, 253 | ); 254 | name = "Supporting Files"; 255 | sourceTree = ""; 256 | }; 257 | 357D954B1DA3F2B400AEC55F /* Frameworks */ = { 258 | isa = PBXGroup; 259 | children = ( 260 | 35B742341F82A61D00829B21 /* Nimble.framework */, 261 | 35B742351F82A61E00829B21 /* Quick.framework */, 262 | 35B7422D1F82A5DF00829B21 /* Nimble.framework */, 263 | 35B7422E1F82A5E000829B21 /* Quick.framework */, 264 | 354AD5851F8A659800B18FAE /* Nimble.framework */, 265 | 354AD5841F8A659800B18FAE /* Quick.framework */, 266 | ); 267 | name = Frameworks; 268 | sourceTree = ""; 269 | }; 270 | 359649011FB18CBF00FC7ADC /* Core */ = { 271 | isa = PBXGroup; 272 | children = ( 273 | 8B7138131FB72D510009D5FF /* DataMuseClient.swift */, 274 | 8B7138141FB72D510009D5FF /* DataRequester.swift */, 275 | 8B7138151FB72D510009D5FF /* Words.swift */, 276 | ); 277 | path = Core; 278 | sourceTree = ""; 279 | }; 280 | /* End PBXGroup section */ 281 | 282 | /* Begin PBXHeadersBuildPhase section */ 283 | 3549BB1E1DA389CD00C63030 /* Headers */ = { 284 | isa = PBXHeadersBuildPhase; 285 | buildActionMask = 2147483647; 286 | files = ( 287 | 3549BB501DA38A2000C63030 /* datamuse-swift.h in Headers */, 288 | ); 289 | runOnlyForDeploymentPostprocessing = 0; 290 | }; 291 | 3549BB2B1DA389DB00C63030 /* Headers */ = { 292 | isa = PBXHeadersBuildPhase; 293 | buildActionMask = 2147483647; 294 | files = ( 295 | 3549BB521DA38A2100C63030 /* datamuse-swift.h in Headers */, 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | }; 299 | 3549BB381DA389E800C63030 /* Headers */ = { 300 | isa = PBXHeadersBuildPhase; 301 | buildActionMask = 2147483647; 302 | files = ( 303 | 3549BB531DA38A2200C63030 /* datamuse-swift.h in Headers */, 304 | ); 305 | runOnlyForDeploymentPostprocessing = 0; 306 | }; 307 | 3549BB451DA389F300C63030 /* Headers */ = { 308 | isa = PBXHeadersBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | 3549BB511DA38A2000C63030 /* datamuse-swift.h in Headers */, 312 | ); 313 | runOnlyForDeploymentPostprocessing = 0; 314 | }; 315 | /* End PBXHeadersBuildPhase section */ 316 | 317 | /* Begin PBXNativeTarget section */ 318 | 3549BB201DA389CD00C63030 /* datamuse-swift-iOS */ = { 319 | isa = PBXNativeTarget; 320 | buildConfigurationList = 3549BB261DA389CD00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-iOS" */; 321 | buildPhases = ( 322 | 3549BB1C1DA389CD00C63030 /* Sources */, 323 | 3549BB1D1DA389CD00C63030 /* Frameworks */, 324 | 3549BB1E1DA389CD00C63030 /* Headers */, 325 | 3549BB1F1DA389CD00C63030 /* Resources */, 326 | ); 327 | buildRules = ( 328 | ); 329 | dependencies = ( 330 | ); 331 | name = "datamuse-swift-iOS"; 332 | productName = "datamuse-swift-iOS"; 333 | productReference = 3549BB211DA389CD00C63030 /* datamuse-swift.framework */; 334 | productType = "com.apple.product-type.framework"; 335 | }; 336 | 3549BB2D1DA389DB00C63030 /* datamuse-swift-watchOS */ = { 337 | isa = PBXNativeTarget; 338 | buildConfigurationList = 3549BB331DA389DB00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-watchOS" */; 339 | buildPhases = ( 340 | 3549BB291DA389DB00C63030 /* Sources */, 341 | 3549BB2A1DA389DB00C63030 /* Frameworks */, 342 | 3549BB2B1DA389DB00C63030 /* Headers */, 343 | 3549BB2C1DA389DB00C63030 /* Resources */, 344 | ); 345 | buildRules = ( 346 | ); 347 | dependencies = ( 348 | ); 349 | name = "datamuse-swift-watchOS"; 350 | productName = "datamuse-swift-watchOS"; 351 | productReference = 3549BB2E1DA389DB00C63030 /* datamuse-swift.framework */; 352 | productType = "com.apple.product-type.framework"; 353 | }; 354 | 3549BB3A1DA389E800C63030 /* datamuse-swift-macOS */ = { 355 | isa = PBXNativeTarget; 356 | buildConfigurationList = 3549BB401DA389E800C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-macOS" */; 357 | buildPhases = ( 358 | 3549BB361DA389E800C63030 /* Sources */, 359 | 3549BB371DA389E800C63030 /* Frameworks */, 360 | 3549BB381DA389E800C63030 /* Headers */, 361 | 3549BB391DA389E800C63030 /* Resources */, 362 | ); 363 | buildRules = ( 364 | ); 365 | dependencies = ( 366 | ); 367 | name = "datamuse-swift-macOS"; 368 | productName = "datamuse-swift-macOS"; 369 | productReference = 3549BB3B1DA389E800C63030 /* datamuse-swift.framework */; 370 | productType = "com.apple.product-type.framework"; 371 | }; 372 | 3549BB471DA389F300C63030 /* datamuse-swift-tvOS */ = { 373 | isa = PBXNativeTarget; 374 | buildConfigurationList = 3549BB4D1DA389F300C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-tvOS" */; 375 | buildPhases = ( 376 | 3549BB431DA389F300C63030 /* Sources */, 377 | 3549BB441DA389F300C63030 /* Frameworks */, 378 | 3549BB451DA389F300C63030 /* Headers */, 379 | 3549BB461DA389F300C63030 /* Resources */, 380 | ); 381 | buildRules = ( 382 | ); 383 | dependencies = ( 384 | ); 385 | name = "datamuse-swift-tvOS"; 386 | productName = "datamuse-swift-tvOS"; 387 | productReference = 3549BB481DA389F300C63030 /* datamuse-swift.framework */; 388 | productType = "com.apple.product-type.framework"; 389 | }; 390 | 3549BB601DA38ADB00C63030 /* datamuse-swiftTests-iOS */ = { 391 | isa = PBXNativeTarget; 392 | buildConfigurationList = 3549BB691DA38ADB00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swiftTests-iOS" */; 393 | buildPhases = ( 394 | 3549BB5D1DA38ADB00C63030 /* Sources */, 395 | 3549BB5E1DA38ADB00C63030 /* Frameworks */, 396 | 3549BB5F1DA38ADB00C63030 /* Resources */, 397 | 35B7422C1F82A2C700829B21 /* Embed Frameworks */, 398 | ); 399 | buildRules = ( 400 | ); 401 | dependencies = ( 402 | 3549BB681DA38ADB00C63030 /* PBXTargetDependency */, 403 | ); 404 | name = "datamuse-swiftTests-iOS"; 405 | productName = "datamuse-swiftTests-iOS"; 406 | productReference = 3549BB611DA38ADB00C63030 /* datamuse-swiftTests-iOS.xctest */; 407 | productType = "com.apple.product-type.bundle.unit-test"; 408 | }; 409 | 3549BB6F1DA38AEF00C63030 /* datamuse-swiftTests-tvOS */ = { 410 | isa = PBXNativeTarget; 411 | buildConfigurationList = 3549BB781DA38AEF00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swiftTests-tvOS" */; 412 | buildPhases = ( 413 | 3549BB6C1DA38AEF00C63030 /* Sources */, 414 | 3549BB6D1DA38AEF00C63030 /* Frameworks */, 415 | 3549BB6E1DA38AEF00C63030 /* Resources */, 416 | 35B7423A1F82A63600829B21 /* Embed Frameworks */, 417 | ); 418 | buildRules = ( 419 | ); 420 | dependencies = ( 421 | 3549BB771DA38AEF00C63030 /* PBXTargetDependency */, 422 | ); 423 | name = "datamuse-swiftTests-tvOS"; 424 | productName = "datamuse-swiftTests-tvOS"; 425 | productReference = 3549BB701DA38AEF00C63030 /* datamuse-swiftTests-tvOS.xctest */; 426 | productType = "com.apple.product-type.bundle.unit-test"; 427 | }; 428 | 3549BB7E1DA38B0000C63030 /* datamuse-swiftTests-macOS */ = { 429 | isa = PBXNativeTarget; 430 | buildConfigurationList = 3549BB871DA38B0000C63030 /* Build configuration list for PBXNativeTarget "datamuse-swiftTests-macOS" */; 431 | buildPhases = ( 432 | 3549BB7B1DA38B0000C63030 /* Sources */, 433 | 3549BB7C1DA38B0000C63030 /* Frameworks */, 434 | 3549BB7D1DA38B0000C63030 /* Resources */, 435 | 35B742331F82A60600829B21 /* Embed Frameworks */, 436 | ); 437 | buildRules = ( 438 | ); 439 | dependencies = ( 440 | 3549BB861DA38B0000C63030 /* PBXTargetDependency */, 441 | ); 442 | name = "datamuse-swiftTests-macOS"; 443 | productName = "datamuse-swiftTests-macOS"; 444 | productReference = 3549BB7F1DA38B0000C63030 /* datamuse-swiftTests-macOS.xctest */; 445 | productType = "com.apple.product-type.bundle.unit-test"; 446 | }; 447 | /* End PBXNativeTarget section */ 448 | 449 | /* Begin PBXProject section */ 450 | 3549BAFC1DA387DB00C63030 /* Project object */ = { 451 | isa = PBXProject; 452 | attributes = { 453 | LastSwiftUpdateCheck = 0800; 454 | LastUpgradeCheck = 0900; 455 | ORGANIZATIONNAME = ezefranca; 456 | TargetAttributes = { 457 | 3549BB201DA389CD00C63030 = { 458 | CreatedOnToolsVersion = 8.0; 459 | LastSwiftMigration = 0900; 460 | ProvisioningStyle = Automatic; 461 | }; 462 | 3549BB2D1DA389DB00C63030 = { 463 | CreatedOnToolsVersion = 8.0; 464 | LastSwiftMigration = ""; 465 | ProvisioningStyle = Automatic; 466 | }; 467 | 3549BB3A1DA389E800C63030 = { 468 | CreatedOnToolsVersion = 8.0; 469 | LastSwiftMigration = 0900; 470 | ProvisioningStyle = Automatic; 471 | }; 472 | 3549BB471DA389F300C63030 = { 473 | CreatedOnToolsVersion = 8.0; 474 | LastSwiftMigration = 0900; 475 | ProvisioningStyle = Automatic; 476 | }; 477 | 3549BB601DA38ADB00C63030 = { 478 | CreatedOnToolsVersion = 8.0; 479 | LastSwiftMigration = 0900; 480 | ProvisioningStyle = Automatic; 481 | }; 482 | 3549BB6F1DA38AEF00C63030 = { 483 | CreatedOnToolsVersion = 8.0; 484 | LastSwiftMigration = 0900; 485 | ProvisioningStyle = Automatic; 486 | }; 487 | 3549BB7E1DA38B0000C63030 = { 488 | CreatedOnToolsVersion = 8.0; 489 | LastSwiftMigration = 0900; 490 | ProvisioningStyle = Automatic; 491 | }; 492 | }; 493 | }; 494 | buildConfigurationList = 3549BAFF1DA387DB00C63030 /* Build configuration list for PBXProject "datamuse-swift" */; 495 | compatibilityVersion = "Xcode 3.2"; 496 | developmentRegion = English; 497 | hasScannedForEncodings = 0; 498 | knownRegions = ( 499 | English, 500 | en, 501 | ); 502 | mainGroup = 3549BAFB1DA387DB00C63030; 503 | productRefGroup = 3549BB061DA387DB00C63030 /* Products */; 504 | projectDirPath = ""; 505 | projectRoot = ""; 506 | targets = ( 507 | 3549BB201DA389CD00C63030 /* datamuse-swift-iOS */, 508 | 3549BB601DA38ADB00C63030 /* datamuse-swiftTests-iOS */, 509 | 3549BB3A1DA389E800C63030 /* datamuse-swift-macOS */, 510 | 3549BB7E1DA38B0000C63030 /* datamuse-swiftTests-macOS */, 511 | 3549BB471DA389F300C63030 /* datamuse-swift-tvOS */, 512 | 3549BB6F1DA38AEF00C63030 /* datamuse-swiftTests-tvOS */, 513 | 3549BB2D1DA389DB00C63030 /* datamuse-swift-watchOS */, 514 | ); 515 | }; 516 | /* End PBXProject section */ 517 | 518 | /* Begin PBXResourcesBuildPhase section */ 519 | 3549BB1F1DA389CD00C63030 /* Resources */ = { 520 | isa = PBXResourcesBuildPhase; 521 | buildActionMask = 2147483647; 522 | files = ( 523 | ); 524 | runOnlyForDeploymentPostprocessing = 0; 525 | }; 526 | 3549BB2C1DA389DB00C63030 /* Resources */ = { 527 | isa = PBXResourcesBuildPhase; 528 | buildActionMask = 2147483647; 529 | files = ( 530 | ); 531 | runOnlyForDeploymentPostprocessing = 0; 532 | }; 533 | 3549BB391DA389E800C63030 /* Resources */ = { 534 | isa = PBXResourcesBuildPhase; 535 | buildActionMask = 2147483647; 536 | files = ( 537 | ); 538 | runOnlyForDeploymentPostprocessing = 0; 539 | }; 540 | 3549BB461DA389F300C63030 /* Resources */ = { 541 | isa = PBXResourcesBuildPhase; 542 | buildActionMask = 2147483647; 543 | files = ( 544 | ); 545 | runOnlyForDeploymentPostprocessing = 0; 546 | }; 547 | 3549BB5F1DA38ADB00C63030 /* Resources */ = { 548 | isa = PBXResourcesBuildPhase; 549 | buildActionMask = 2147483647; 550 | files = ( 551 | ); 552 | runOnlyForDeploymentPostprocessing = 0; 553 | }; 554 | 3549BB6E1DA38AEF00C63030 /* Resources */ = { 555 | isa = PBXResourcesBuildPhase; 556 | buildActionMask = 2147483647; 557 | files = ( 558 | ); 559 | runOnlyForDeploymentPostprocessing = 0; 560 | }; 561 | 3549BB7D1DA38B0000C63030 /* Resources */ = { 562 | isa = PBXResourcesBuildPhase; 563 | buildActionMask = 2147483647; 564 | files = ( 565 | ); 566 | runOnlyForDeploymentPostprocessing = 0; 567 | }; 568 | /* End PBXResourcesBuildPhase section */ 569 | 570 | /* Begin PBXSourcesBuildPhase section */ 571 | 3549BB1C1DA389CD00C63030 /* Sources */ = { 572 | isa = PBXSourcesBuildPhase; 573 | buildActionMask = 2147483647; 574 | files = ( 575 | 8B7138161FB72D510009D5FF /* DataMuseClient.swift in Sources */, 576 | 8B71381E1FB72D510009D5FF /* Words.swift in Sources */, 577 | 8B71381A1FB72D510009D5FF /* DataRequester.swift in Sources */, 578 | ); 579 | runOnlyForDeploymentPostprocessing = 0; 580 | }; 581 | 3549BB291DA389DB00C63030 /* Sources */ = { 582 | isa = PBXSourcesBuildPhase; 583 | buildActionMask = 2147483647; 584 | files = ( 585 | 8B7138191FB72D510009D5FF /* DataMuseClient.swift in Sources */, 586 | 8B7138211FB72D510009D5FF /* Words.swift in Sources */, 587 | 8B71381D1FB72D510009D5FF /* DataRequester.swift in Sources */, 588 | ); 589 | runOnlyForDeploymentPostprocessing = 0; 590 | }; 591 | 3549BB361DA389E800C63030 /* Sources */ = { 592 | isa = PBXSourcesBuildPhase; 593 | buildActionMask = 2147483647; 594 | files = ( 595 | 8B7138171FB72D510009D5FF /* DataMuseClient.swift in Sources */, 596 | 8B71381F1FB72D510009D5FF /* Words.swift in Sources */, 597 | 8B71381B1FB72D510009D5FF /* DataRequester.swift in Sources */, 598 | ); 599 | runOnlyForDeploymentPostprocessing = 0; 600 | }; 601 | 3549BB431DA389F300C63030 /* Sources */ = { 602 | isa = PBXSourcesBuildPhase; 603 | buildActionMask = 2147483647; 604 | files = ( 605 | 8B7138181FB72D510009D5FF /* DataMuseClient.swift in Sources */, 606 | 8B7138201FB72D510009D5FF /* Words.swift in Sources */, 607 | 8B71381C1FB72D510009D5FF /* DataRequester.swift in Sources */, 608 | ); 609 | runOnlyForDeploymentPostprocessing = 0; 610 | }; 611 | 3549BB5D1DA38ADB00C63030 /* Sources */ = { 612 | isa = PBXSourcesBuildPhase; 613 | buildActionMask = 2147483647; 614 | files = ( 615 | 3549BB8B1DA38C0A00C63030 /* datamuse-swiftSpec.swift in Sources */, 616 | ); 617 | runOnlyForDeploymentPostprocessing = 0; 618 | }; 619 | 3549BB6C1DA38AEF00C63030 /* Sources */ = { 620 | isa = PBXSourcesBuildPhase; 621 | buildActionMask = 2147483647; 622 | files = ( 623 | 3549BB8D1DA38C0A00C63030 /* datamuse-swiftSpec.swift in Sources */, 624 | ); 625 | runOnlyForDeploymentPostprocessing = 0; 626 | }; 627 | 3549BB7B1DA38B0000C63030 /* Sources */ = { 628 | isa = PBXSourcesBuildPhase; 629 | buildActionMask = 2147483647; 630 | files = ( 631 | 3549BB8C1DA38C0A00C63030 /* datamuse-swiftSpec.swift in Sources */, 632 | ); 633 | runOnlyForDeploymentPostprocessing = 0; 634 | }; 635 | /* End PBXSourcesBuildPhase section */ 636 | 637 | /* Begin PBXTargetDependency section */ 638 | 3549BB681DA38ADB00C63030 /* PBXTargetDependency */ = { 639 | isa = PBXTargetDependency; 640 | target = 3549BB201DA389CD00C63030 /* datamuse-swift-iOS */; 641 | targetProxy = 3549BB671DA38ADB00C63030 /* PBXContainerItemProxy */; 642 | }; 643 | 3549BB771DA38AEF00C63030 /* PBXTargetDependency */ = { 644 | isa = PBXTargetDependency; 645 | target = 3549BB471DA389F300C63030 /* datamuse-swift-tvOS */; 646 | targetProxy = 3549BB761DA38AEF00C63030 /* PBXContainerItemProxy */; 647 | }; 648 | 3549BB861DA38B0000C63030 /* PBXTargetDependency */ = { 649 | isa = PBXTargetDependency; 650 | target = 3549BB3A1DA389E800C63030 /* datamuse-swift-macOS */; 651 | targetProxy = 3549BB851DA38B0000C63030 /* PBXContainerItemProxy */; 652 | }; 653 | /* End PBXTargetDependency section */ 654 | 655 | /* Begin XCBuildConfiguration section */ 656 | 3549BB0B1DA387DB00C63030 /* Debug */ = { 657 | isa = XCBuildConfiguration; 658 | buildSettings = { 659 | ALWAYS_SEARCH_USER_PATHS = NO; 660 | CLANG_ANALYZER_NONNULL = YES; 661 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 662 | CLANG_CXX_LIBRARY = "libc++"; 663 | CLANG_ENABLE_MODULES = YES; 664 | CLANG_ENABLE_OBJC_ARC = YES; 665 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 666 | CLANG_WARN_BOOL_CONVERSION = YES; 667 | CLANG_WARN_COMMA = YES; 668 | CLANG_WARN_CONSTANT_CONVERSION = YES; 669 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 670 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 671 | CLANG_WARN_EMPTY_BODY = YES; 672 | CLANG_WARN_ENUM_CONVERSION = YES; 673 | CLANG_WARN_INFINITE_RECURSION = YES; 674 | CLANG_WARN_INT_CONVERSION = YES; 675 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 676 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 677 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 678 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 679 | CLANG_WARN_STRICT_PROTOTYPES = YES; 680 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 681 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 682 | CLANG_WARN_UNREACHABLE_CODE = YES; 683 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 684 | COPY_PHASE_STRIP = NO; 685 | CURRENT_PROJECT_VERSION = 1; 686 | DEBUG_INFORMATION_FORMAT = dwarf; 687 | ENABLE_STRICT_OBJC_MSGSEND = YES; 688 | ENABLE_TESTABILITY = YES; 689 | GCC_C_LANGUAGE_STANDARD = gnu99; 690 | GCC_DYNAMIC_NO_PIC = NO; 691 | GCC_NO_COMMON_BLOCKS = YES; 692 | GCC_OPTIMIZATION_LEVEL = 0; 693 | GCC_PREPROCESSOR_DEFINITIONS = ( 694 | "DEBUG=1", 695 | "$(inherited)", 696 | ); 697 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 698 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 699 | GCC_WARN_UNDECLARED_SELECTOR = YES; 700 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 701 | GCC_WARN_UNUSED_FUNCTION = YES; 702 | GCC_WARN_UNUSED_VARIABLE = YES; 703 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 704 | MACOSX_DEPLOYMENT_TARGET = 10.10; 705 | MTL_ENABLE_DEBUG_INFO = YES; 706 | ONLY_ACTIVE_ARCH = YES; 707 | SDKROOT = iphoneos; 708 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 709 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 710 | SWIFT_SWIFT3_OBJC_INFERENCE = On; 711 | SWIFT_VERSION = 4.0; 712 | TARGETED_DEVICE_FAMILY = "1,2"; 713 | VERSIONING_SYSTEM = "apple-generic"; 714 | VERSION_INFO_PREFIX = ""; 715 | }; 716 | name = Debug; 717 | }; 718 | 3549BB0C1DA387DB00C63030 /* Release */ = { 719 | isa = XCBuildConfiguration; 720 | buildSettings = { 721 | ALWAYS_SEARCH_USER_PATHS = NO; 722 | CLANG_ANALYZER_NONNULL = YES; 723 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 724 | CLANG_CXX_LIBRARY = "libc++"; 725 | CLANG_ENABLE_MODULES = YES; 726 | CLANG_ENABLE_OBJC_ARC = YES; 727 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 728 | CLANG_WARN_BOOL_CONVERSION = YES; 729 | CLANG_WARN_COMMA = YES; 730 | CLANG_WARN_CONSTANT_CONVERSION = YES; 731 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 732 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 733 | CLANG_WARN_EMPTY_BODY = YES; 734 | CLANG_WARN_ENUM_CONVERSION = YES; 735 | CLANG_WARN_INFINITE_RECURSION = YES; 736 | CLANG_WARN_INT_CONVERSION = YES; 737 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 738 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 739 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 740 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 741 | CLANG_WARN_STRICT_PROTOTYPES = YES; 742 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 743 | CLANG_WARN_SUSPICIOUS_MOVES = YES; 744 | CLANG_WARN_UNREACHABLE_CODE = YES; 745 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 746 | COPY_PHASE_STRIP = NO; 747 | CURRENT_PROJECT_VERSION = 1; 748 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 749 | ENABLE_NS_ASSERTIONS = NO; 750 | ENABLE_STRICT_OBJC_MSGSEND = YES; 751 | GCC_C_LANGUAGE_STANDARD = gnu99; 752 | GCC_NO_COMMON_BLOCKS = YES; 753 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 754 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 755 | GCC_WARN_UNDECLARED_SELECTOR = YES; 756 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 757 | GCC_WARN_UNUSED_FUNCTION = YES; 758 | GCC_WARN_UNUSED_VARIABLE = YES; 759 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 760 | MACOSX_DEPLOYMENT_TARGET = 10.10; 761 | MTL_ENABLE_DEBUG_INFO = NO; 762 | SDKROOT = iphoneos; 763 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 764 | SWIFT_SWIFT3_OBJC_INFERENCE = On; 765 | SWIFT_VERSION = 4.0; 766 | TARGETED_DEVICE_FAMILY = "1,2"; 767 | VALIDATE_PRODUCT = YES; 768 | VERSIONING_SYSTEM = "apple-generic"; 769 | VERSION_INFO_PREFIX = ""; 770 | }; 771 | name = Release; 772 | }; 773 | 3549BB271DA389CD00C63030 /* Debug */ = { 774 | isa = XCBuildConfiguration; 775 | buildSettings = { 776 | CLANG_ENABLE_MODULES = YES; 777 | DEFINES_MODULE = YES; 778 | DYLIB_COMPATIBILITY_VERSION = 1; 779 | DYLIB_CURRENT_VERSION = 1; 780 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 781 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 782 | INFOPLIST_FILE = Sources/Info.plist; 783 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 784 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 785 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 786 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 787 | PRODUCT_NAME = "datamuse-swift"; 788 | SKIP_INSTALL = YES; 789 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 790 | }; 791 | name = Debug; 792 | }; 793 | 3549BB281DA389CD00C63030 /* Release */ = { 794 | isa = XCBuildConfiguration; 795 | buildSettings = { 796 | CLANG_ENABLE_MODULES = YES; 797 | DEFINES_MODULE = YES; 798 | DYLIB_COMPATIBILITY_VERSION = 1; 799 | DYLIB_CURRENT_VERSION = 1; 800 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 801 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 802 | INFOPLIST_FILE = Sources/Info.plist; 803 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 804 | IPHONEOS_DEPLOYMENT_TARGET = 15.0; 805 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 806 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 807 | PRODUCT_NAME = "datamuse-swift"; 808 | SKIP_INSTALL = YES; 809 | }; 810 | name = Release; 811 | }; 812 | 3549BB341DA389DB00C63030 /* Debug */ = { 813 | isa = XCBuildConfiguration; 814 | buildSettings = { 815 | APPLICATION_EXTENSION_API_ONLY = YES; 816 | CLANG_ENABLE_MODULES = YES; 817 | DEFINES_MODULE = YES; 818 | DYLIB_COMPATIBILITY_VERSION = 1; 819 | DYLIB_CURRENT_VERSION = 1; 820 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 821 | INFOPLIST_FILE = Sources/Info.plist; 822 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 823 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 824 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 825 | PRODUCT_NAME = "datamuse-swift"; 826 | SDKROOT = watchos; 827 | SKIP_INSTALL = YES; 828 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 829 | TARGETED_DEVICE_FAMILY = 4; 830 | WATCHOS_DEPLOYMENT_TARGET = 2.0; 831 | }; 832 | name = Debug; 833 | }; 834 | 3549BB351DA389DB00C63030 /* Release */ = { 835 | isa = XCBuildConfiguration; 836 | buildSettings = { 837 | APPLICATION_EXTENSION_API_ONLY = YES; 838 | CLANG_ENABLE_MODULES = YES; 839 | DEFINES_MODULE = YES; 840 | DYLIB_COMPATIBILITY_VERSION = 1; 841 | DYLIB_CURRENT_VERSION = 1; 842 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 843 | INFOPLIST_FILE = Sources/Info.plist; 844 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 845 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 846 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 847 | PRODUCT_NAME = "datamuse-swift"; 848 | SDKROOT = watchos; 849 | SKIP_INSTALL = YES; 850 | TARGETED_DEVICE_FAMILY = 4; 851 | WATCHOS_DEPLOYMENT_TARGET = 2.0; 852 | }; 853 | name = Release; 854 | }; 855 | 3549BB411DA389E800C63030 /* Debug */ = { 856 | isa = XCBuildConfiguration; 857 | buildSettings = { 858 | CLANG_ENABLE_MODULES = YES; 859 | COMBINE_HIDPI_IMAGES = YES; 860 | DEFINES_MODULE = YES; 861 | DYLIB_COMPATIBILITY_VERSION = 1; 862 | DYLIB_CURRENT_VERSION = 1; 863 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 864 | FRAMEWORK_VERSION = A; 865 | INFOPLIST_FILE = Sources/Info.plist; 866 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 867 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; 868 | MACOSX_DEPLOYMENT_TARGET = 10.10; 869 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 870 | PRODUCT_NAME = "datamuse-swift"; 871 | SDKROOT = macosx; 872 | SKIP_INSTALL = YES; 873 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 874 | }; 875 | name = Debug; 876 | }; 877 | 3549BB421DA389E800C63030 /* Release */ = { 878 | isa = XCBuildConfiguration; 879 | buildSettings = { 880 | CLANG_ENABLE_MODULES = YES; 881 | COMBINE_HIDPI_IMAGES = YES; 882 | DEFINES_MODULE = YES; 883 | DYLIB_COMPATIBILITY_VERSION = 1; 884 | DYLIB_CURRENT_VERSION = 1; 885 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 886 | FRAMEWORK_VERSION = A; 887 | INFOPLIST_FILE = Sources/Info.plist; 888 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 889 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; 890 | MACOSX_DEPLOYMENT_TARGET = 10.10; 891 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 892 | PRODUCT_NAME = "datamuse-swift"; 893 | SDKROOT = macosx; 894 | SKIP_INSTALL = YES; 895 | }; 896 | name = Release; 897 | }; 898 | 3549BB4E1DA389F300C63030 /* Debug */ = { 899 | isa = XCBuildConfiguration; 900 | buildSettings = { 901 | CLANG_ENABLE_MODULES = YES; 902 | DEFINES_MODULE = YES; 903 | DYLIB_COMPATIBILITY_VERSION = 1; 904 | DYLIB_CURRENT_VERSION = 1; 905 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 906 | INFOPLIST_FILE = "Sources/Info-tvOS.plist"; 907 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 908 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 909 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 910 | PRODUCT_NAME = "datamuse-swift"; 911 | SDKROOT = appletvos; 912 | SKIP_INSTALL = YES; 913 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 914 | TARGETED_DEVICE_FAMILY = 3; 915 | TVOS_DEPLOYMENT_TARGET = 9.0; 916 | }; 917 | name = Debug; 918 | }; 919 | 3549BB4F1DA389F300C63030 /* Release */ = { 920 | isa = XCBuildConfiguration; 921 | buildSettings = { 922 | CLANG_ENABLE_MODULES = YES; 923 | DEFINES_MODULE = YES; 924 | DYLIB_COMPATIBILITY_VERSION = 1; 925 | DYLIB_CURRENT_VERSION = 1; 926 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 927 | INFOPLIST_FILE = "Sources/Info-tvOS.plist"; 928 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 929 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 930 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swift"; 931 | PRODUCT_NAME = "datamuse-swift"; 932 | SDKROOT = appletvos; 933 | SKIP_INSTALL = YES; 934 | TARGETED_DEVICE_FAMILY = 3; 935 | TVOS_DEPLOYMENT_TARGET = 9.0; 936 | }; 937 | name = Release; 938 | }; 939 | 3549BB6A1DA38ADB00C63030 /* Debug */ = { 940 | isa = XCBuildConfiguration; 941 | buildSettings = { 942 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 943 | CLANG_ENABLE_MODULES = YES; 944 | FRAMEWORK_SEARCH_PATHS = ( 945 | "$(inherited)", 946 | "$(PROJECT_DIR)/Carthage/Build/iOS", 947 | ); 948 | INFOPLIST_FILE = Tests/Info.plist; 949 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 950 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swiftTests"; 951 | PRODUCT_NAME = "$(TARGET_NAME)"; 952 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 953 | }; 954 | name = Debug; 955 | }; 956 | 3549BB6B1DA38ADB00C63030 /* Release */ = { 957 | isa = XCBuildConfiguration; 958 | buildSettings = { 959 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 960 | CLANG_ENABLE_MODULES = YES; 961 | FRAMEWORK_SEARCH_PATHS = ( 962 | "$(inherited)", 963 | "$(PROJECT_DIR)/Carthage/Build/iOS", 964 | ); 965 | INFOPLIST_FILE = Tests/Info.plist; 966 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 967 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swiftTests"; 968 | PRODUCT_NAME = "$(TARGET_NAME)"; 969 | }; 970 | name = Release; 971 | }; 972 | 3549BB791DA38AEF00C63030 /* Debug */ = { 973 | isa = XCBuildConfiguration; 974 | buildSettings = { 975 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 976 | CLANG_ENABLE_MODULES = YES; 977 | FRAMEWORK_SEARCH_PATHS = ( 978 | "$(inherited)", 979 | "$(PROJECT_DIR)/Carthage/Build/tvOS", 980 | ); 981 | INFOPLIST_FILE = "Tests/Info-tvOS.plist"; 982 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 983 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swiftTests"; 984 | PRODUCT_NAME = "$(TARGET_NAME)"; 985 | SDKROOT = appletvos; 986 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 987 | TVOS_DEPLOYMENT_TARGET = 9.0; 988 | }; 989 | name = Debug; 990 | }; 991 | 3549BB7A1DA38AEF00C63030 /* Release */ = { 992 | isa = XCBuildConfiguration; 993 | buildSettings = { 994 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 995 | CLANG_ENABLE_MODULES = YES; 996 | FRAMEWORK_SEARCH_PATHS = ( 997 | "$(inherited)", 998 | "$(PROJECT_DIR)/Carthage/Build/tvOS", 999 | ); 1000 | INFOPLIST_FILE = "Tests/Info-tvOS.plist"; 1001 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1002 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swiftTests"; 1003 | PRODUCT_NAME = "$(TARGET_NAME)"; 1004 | SDKROOT = appletvos; 1005 | TVOS_DEPLOYMENT_TARGET = 9.0; 1006 | }; 1007 | name = Release; 1008 | }; 1009 | 3549BB881DA38B0000C63030 /* Debug */ = { 1010 | isa = XCBuildConfiguration; 1011 | buildSettings = { 1012 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 1013 | CLANG_ENABLE_MODULES = YES; 1014 | COMBINE_HIDPI_IMAGES = YES; 1015 | FRAMEWORK_SEARCH_PATHS = ( 1016 | "$(inherited)", 1017 | "$(PROJECT_DIR)/Carthage/Build/Mac", 1018 | ); 1019 | INFOPLIST_FILE = Tests/Info.plist; 1020 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; 1021 | MACOSX_DEPLOYMENT_TARGET = 10.10; 1022 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swiftTests"; 1023 | PRODUCT_NAME = "$(TARGET_NAME)"; 1024 | SDKROOT = macosx; 1025 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 1026 | }; 1027 | name = Debug; 1028 | }; 1029 | 3549BB891DA38B0000C63030 /* Release */ = { 1030 | isa = XCBuildConfiguration; 1031 | buildSettings = { 1032 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 1033 | CLANG_ENABLE_MODULES = YES; 1034 | COMBINE_HIDPI_IMAGES = YES; 1035 | FRAMEWORK_SEARCH_PATHS = ( 1036 | "$(inherited)", 1037 | "$(PROJECT_DIR)/Carthage/Build/Mac", 1038 | ); 1039 | INFOPLIST_FILE = Tests/Info.plist; 1040 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; 1041 | MACOSX_DEPLOYMENT_TARGET = 10.10; 1042 | PRODUCT_BUNDLE_IDENTIFIER = "ezefranca.com.datamuse-api.datamuse-swiftTests"; 1043 | PRODUCT_NAME = "$(TARGET_NAME)"; 1044 | SDKROOT = macosx; 1045 | }; 1046 | name = Release; 1047 | }; 1048 | /* End XCBuildConfiguration section */ 1049 | 1050 | /* Begin XCConfigurationList section */ 1051 | 3549BAFF1DA387DB00C63030 /* Build configuration list for PBXProject "datamuse-swift" */ = { 1052 | isa = XCConfigurationList; 1053 | buildConfigurations = ( 1054 | 3549BB0B1DA387DB00C63030 /* Debug */, 1055 | 3549BB0C1DA387DB00C63030 /* Release */, 1056 | ); 1057 | defaultConfigurationIsVisible = 0; 1058 | defaultConfigurationName = Release; 1059 | }; 1060 | 3549BB261DA389CD00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-iOS" */ = { 1061 | isa = XCConfigurationList; 1062 | buildConfigurations = ( 1063 | 3549BB271DA389CD00C63030 /* Debug */, 1064 | 3549BB281DA389CD00C63030 /* Release */, 1065 | ); 1066 | defaultConfigurationIsVisible = 0; 1067 | defaultConfigurationName = Release; 1068 | }; 1069 | 3549BB331DA389DB00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-watchOS" */ = { 1070 | isa = XCConfigurationList; 1071 | buildConfigurations = ( 1072 | 3549BB341DA389DB00C63030 /* Debug */, 1073 | 3549BB351DA389DB00C63030 /* Release */, 1074 | ); 1075 | defaultConfigurationIsVisible = 0; 1076 | defaultConfigurationName = Release; 1077 | }; 1078 | 3549BB401DA389E800C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-macOS" */ = { 1079 | isa = XCConfigurationList; 1080 | buildConfigurations = ( 1081 | 3549BB411DA389E800C63030 /* Debug */, 1082 | 3549BB421DA389E800C63030 /* Release */, 1083 | ); 1084 | defaultConfigurationIsVisible = 0; 1085 | defaultConfigurationName = Release; 1086 | }; 1087 | 3549BB4D1DA389F300C63030 /* Build configuration list for PBXNativeTarget "datamuse-swift-tvOS" */ = { 1088 | isa = XCConfigurationList; 1089 | buildConfigurations = ( 1090 | 3549BB4E1DA389F300C63030 /* Debug */, 1091 | 3549BB4F1DA389F300C63030 /* Release */, 1092 | ); 1093 | defaultConfigurationIsVisible = 0; 1094 | defaultConfigurationName = Release; 1095 | }; 1096 | 3549BB691DA38ADB00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swiftTests-iOS" */ = { 1097 | isa = XCConfigurationList; 1098 | buildConfigurations = ( 1099 | 3549BB6A1DA38ADB00C63030 /* Debug */, 1100 | 3549BB6B1DA38ADB00C63030 /* Release */, 1101 | ); 1102 | defaultConfigurationIsVisible = 0; 1103 | defaultConfigurationName = Release; 1104 | }; 1105 | 3549BB781DA38AEF00C63030 /* Build configuration list for PBXNativeTarget "datamuse-swiftTests-tvOS" */ = { 1106 | isa = XCConfigurationList; 1107 | buildConfigurations = ( 1108 | 3549BB791DA38AEF00C63030 /* Debug */, 1109 | 3549BB7A1DA38AEF00C63030 /* Release */, 1110 | ); 1111 | defaultConfigurationIsVisible = 0; 1112 | defaultConfigurationName = Release; 1113 | }; 1114 | 3549BB871DA38B0000C63030 /* Build configuration list for PBXNativeTarget "datamuse-swiftTests-macOS" */ = { 1115 | isa = XCConfigurationList; 1116 | buildConfigurations = ( 1117 | 3549BB881DA38B0000C63030 /* Debug */, 1118 | 3549BB891DA38B0000C63030 /* Release */, 1119 | ); 1120 | defaultConfigurationIsVisible = 0; 1121 | defaultConfigurationName = Release; 1122 | }; 1123 | /* End XCConfigurationList section */ 1124 | }; 1125 | rootObject = 3549BAFC1DA387DB00C63030 /* Project object */; 1126 | } 1127 | -------------------------------------------------------------------------------- /datamuse-swift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /datamuse-swift.xcodeproj/xcshareddata/xcschemes/datamuse-swift-iOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 34 | 40 | 41 | 42 | 43 | 44 | 50 | 51 | 52 | 53 | 54 | 55 | 66 | 67 | 73 | 74 | 75 | 76 | 77 | 78 | 84 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /datamuse-swift.xcodeproj/xcshareddata/xcschemes/datamuse-swift-macOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 34 | 40 | 41 | 42 | 43 | 44 | 50 | 51 | 52 | 53 | 54 | 55 | 66 | 67 | 73 | 74 | 75 | 76 | 77 | 78 | 84 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /datamuse-swift.xcodeproj/xcshareddata/xcschemes/datamuse-swift-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 34 | 40 | 41 | 42 | 43 | 44 | 50 | 51 | 52 | 53 | 54 | 55 | 66 | 67 | 73 | 74 | 75 | 76 | 77 | 78 | 84 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /datamuse-swift.xcodeproj/xcshareddata/xcschemes/datamuse-swift-watchOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 47 | 48 | 54 | 55 | 56 | 57 | 58 | 59 | 65 | 66 | 72 | 73 | 74 | 75 | 77 | 78 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /datamuse-swift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 15 | 16 | 18 | 19 | 21 | 22 | 24 | 25 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /datamuse-swift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /datamuse-swift.xcworkspace/xcuserdata/developer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezefranca/datamuse-swift/c78df49ab7f499a3f5be2b78fa139d7ac4e4c642/datamuse-swift.xcworkspace/xcuserdata/developer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- 1 | carthage update --no-use-binaries 2 | --------------------------------------------------------------------------------