From b2f6787b51f40461fd3ca7ee9db2fa70c2624d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Ruiz-L=C3=B3pez?= Date: Mon, 21 Jan 2019 12:33:44 +0100 Subject: [PATCH] Step 0: Foundations --- .gitignore | 43 +- swift/FPFundamentals/Config/Info.plist | 24 ++ .../Contents.swift | 32 ++ .../contents.xcplayground | 2 + .../contents.xcworkspacedata | 7 + .../FPFundamentals.xcodeproj/project.pbxproj | 396 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../contents.xcworkspacedata | 10 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../FPFundamentals/FPFundamentals/Info.plist | 24 ++ swift/FPFundamentals/Podfile | 5 + swift/FPFundamentals/Podfile.lock | 16 + 13 files changed, 581 insertions(+), 1 deletion(-) create mode 100644 swift/FPFundamentals/Config/Info.plist create mode 100644 swift/FPFundamentals/FPFundamentals.playground/Pages/Fundamentals.xcplaygroundpage/Contents.swift create mode 100644 swift/FPFundamentals/FPFundamentals.playground/contents.xcplayground create mode 100755 swift/FPFundamentals/FPFundamentals.playground/playground.xcworkspace/contents.xcworkspacedata create mode 100644 swift/FPFundamentals/FPFundamentals.xcodeproj/project.pbxproj create mode 100644 swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 swift/FPFundamentals/FPFundamentals.xcworkspace/contents.xcworkspacedata create mode 100644 swift/FPFundamentals/FPFundamentals.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 swift/FPFundamentals/FPFundamentals/Info.plist create mode 100755 swift/FPFundamentals/Podfile create mode 100644 swift/FPFundamentals/Podfile.lock diff --git a/.gitignore b/.gitignore index 007bdb8..35fc5e1 100755 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,45 @@ test-output/ target/ .history .idea/ -.DS_Store \ No newline at end of file +.DS_Store + +# Swift & Xcode + +# Xcode +# +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## Build generated +build/ +DerivedData + +## Various settings +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata + +## Other +*.xccheckout +*.moved-aside +*.xcuserstate +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa + +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +.build/ + +# CocoaPods + +Pods/ diff --git a/swift/FPFundamentals/Config/Info.plist b/swift/FPFundamentals/Config/Info.plist new file mode 100644 index 0000000..ec5f35a --- /dev/null +++ b/swift/FPFundamentals/Config/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSHumanReadableCopyright + Copyright © 2018 Miguel Ángel Díaz. All rights reserved. + + diff --git a/swift/FPFundamentals/FPFundamentals.playground/Pages/Fundamentals.xcplaygroundpage/Contents.swift b/swift/FPFundamentals/FPFundamentals.playground/Pages/Fundamentals.xcplaygroundpage/Contents.swift new file mode 100644 index 0000000..8eebd5e --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.playground/Pages/Fundamentals.xcplaygroundpage/Contents.swift @@ -0,0 +1,32 @@ + +// Data types + + + +// Typeclasses + + + +// Instances + + + +// Program + +class Program { + let getBalanceBank1: Int = 100 + let getBalanceBank2: Int = 80 + + var balance: Int { + let b1: Int = getBalanceBank1 + let b2: Int = getBalanceBank2 + + return b1 + b2 + } + + func run() { + print(balance) + } +} + +Program().run() diff --git a/swift/FPFundamentals/FPFundamentals.playground/contents.xcplayground b/swift/FPFundamentals/FPFundamentals.playground/contents.xcplayground new file mode 100644 index 0000000..c11c9f9 --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.playground/contents.xcplayground @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/swift/FPFundamentals/FPFundamentals.playground/playground.xcworkspace/contents.xcworkspacedata b/swift/FPFundamentals/FPFundamentals.playground/playground.xcworkspace/contents.xcworkspacedata new file mode 100755 index 0000000..919434a --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.playground/playground.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/swift/FPFundamentals/FPFundamentals.xcodeproj/project.pbxproj b/swift/FPFundamentals/FPFundamentals.xcodeproj/project.pbxproj new file mode 100644 index 0000000..f795eb0 --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.xcodeproj/project.pbxproj @@ -0,0 +1,396 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 60FF0FBEE1A04834591D8C60 /* Pods_FPFundamentals.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBCEDD1E203EC50A7B06F496 /* Pods_FPFundamentals.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 02EC0FB49DCFDD4C680F9B20 /* Pods-FPFundamentals.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPFundamentals.debug.xcconfig"; path = "Target Support Files/Pods-FPFundamentals/Pods-FPFundamentals.debug.xcconfig"; sourceTree = ""; }; + 07DA4CE4DB12F36F2D451622 /* Pods-FPFundamentals.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FPFundamentals.release.xcconfig"; path = "Target Support Files/Pods-FPFundamentals/Pods-FPFundamentals.release.xcconfig"; sourceTree = ""; }; + 8B39A28521D410C200DE2643 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8B39A28A21D4D92900DE2643 /* FPFundamentals.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = FPFundamentals.playground; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.swift; }; + 8BCD708921D654BE006D6565 /* FPFundamentals.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FPFundamentals.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8BCD708C21D654BE006D6565 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + CBCEDD1E203EC50A7B06F496 /* Pods_FPFundamentals.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FPFundamentals.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 8BCD708621D654BE006D6565 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 60FF0FBEE1A04834591D8C60 /* Pods_FPFundamentals.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0701486E54248ADA0C07BD0A /* Pods */ = { + isa = PBXGroup; + children = ( + 02EC0FB49DCFDD4C680F9B20 /* Pods-FPFundamentals.debug.xcconfig */, + 07DA4CE4DB12F36F2D451622 /* Pods-FPFundamentals.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + 8B39A26221D40F8700DE2643 = { + isa = PBXGroup; + children = ( + 8B39A28A21D4D92900DE2643 /* FPFundamentals.playground */, + 8B39A28321D410C200DE2643 /* Config */, + 8BCD708A21D654BE006D6565 /* FPFundamentals */, + 8B39A26C21D40F8700DE2643 /* Products */, + 0701486E54248ADA0C07BD0A /* Pods */, + B8CDE1E37B40E3022ED631D3 /* Frameworks */, + ); + sourceTree = ""; + }; + 8B39A26C21D40F8700DE2643 /* Products */ = { + isa = PBXGroup; + children = ( + 8BCD708921D654BE006D6565 /* FPFundamentals.framework */, + ); + name = Products; + sourceTree = ""; + }; + 8B39A28321D410C200DE2643 /* Config */ = { + isa = PBXGroup; + children = ( + 8B39A28521D410C200DE2643 /* Info.plist */, + ); + path = Config; + sourceTree = ""; + }; + 8BCD708A21D654BE006D6565 /* FPFundamentals */ = { + isa = PBXGroup; + children = ( + 8BCD708C21D654BE006D6565 /* Info.plist */, + ); + path = FPFundamentals; + sourceTree = ""; + }; + B8CDE1E37B40E3022ED631D3 /* Frameworks */ = { + isa = PBXGroup; + children = ( + CBCEDD1E203EC50A7B06F496 /* Pods_FPFundamentals.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 8BCD708421D654BE006D6565 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 8BCD708821D654BE006D6565 /* FPFundamentals */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8BCD709021D654BE006D6565 /* Build configuration list for PBXNativeTarget "FPFundamentals" */; + buildPhases = ( + FD218D54B8CC6A5806C4ACA5 /* [CP] Check Pods Manifest.lock */, + 8BCD708421D654BE006D6565 /* Headers */, + 8BCD708521D654BE006D6565 /* Sources */, + 8BCD708621D654BE006D6565 /* Frameworks */, + 8BCD708721D654BE006D6565 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = FPFundamentals; + productName = BowPlayground; + productReference = 8BCD708921D654BE006D6565 /* FPFundamentals.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 8B39A26321D40F8700DE2643 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1010; + LastUpgradeCheck = 1010; + ORGANIZATIONNAME = "Miguel Ángel Díaz"; + TargetAttributes = { + 8BCD708821D654BE006D6565 = { + CreatedOnToolsVersion = 10.1; + }; + }; + }; + buildConfigurationList = 8B39A26621D40F8700DE2643 /* Build configuration list for PBXProject "FPFundamentals" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 8B39A26221D40F8700DE2643; + productRefGroup = 8B39A26C21D40F8700DE2643 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 8BCD708821D654BE006D6565 /* FPFundamentals */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 8BCD708721D654BE006D6565 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + FD218D54B8CC6A5806C4ACA5 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-FPFundamentals-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 8BCD708521D654BE006D6565 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + 8B39A27721D40F8800DE2643 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 8B39A27821D40F8800DE2643 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.14; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 8BCD708E21D654BE006D6565 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 02EC0FB49DCFDD4C680F9B20 /* Pods-FPFundamentals.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = FPFundamentals/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.47deg.FPFundamentals; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_VERSION = 4.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 8BCD708F21D654BE006D6565 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 07DA4CE4DB12F36F2D451622 /* Pods-FPFundamentals.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = FPFundamentals/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.47deg.FPFundamentals; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_VERSION = 4.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 8B39A26621D40F8700DE2643 /* Build configuration list for PBXProject "FPFundamentals" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8B39A27721D40F8800DE2643 /* Debug */, + 8B39A27821D40F8800DE2643 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8BCD709021D654BE006D6565 /* Build configuration list for PBXNativeTarget "FPFundamentals" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8BCD708E21D654BE006D6565 /* Debug */, + 8BCD708F21D654BE006D6565 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 8B39A26321D40F8700DE2643 /* Project object */; +} diff --git a/swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..dc5d8e0 --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/swift/FPFundamentals/FPFundamentals.xcworkspace/contents.xcworkspacedata b/swift/FPFundamentals/FPFundamentals.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..76be980 --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/swift/FPFundamentals/FPFundamentals.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/swift/FPFundamentals/FPFundamentals.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/swift/FPFundamentals/FPFundamentals/Info.plist b/swift/FPFundamentals/FPFundamentals/Info.plist new file mode 100644 index 0000000..ec5f35a --- /dev/null +++ b/swift/FPFundamentals/FPFundamentals/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSHumanReadableCopyright + Copyright © 2018 Miguel Ángel Díaz. All rights reserved. + + diff --git a/swift/FPFundamentals/Podfile b/swift/FPFundamentals/Podfile new file mode 100755 index 0000000..bc4eef5 --- /dev/null +++ b/swift/FPFundamentals/Podfile @@ -0,0 +1,5 @@ +target 'FPFundamentals' do + use_frameworks! + + pod "Bow", "~> 0.3.0" +end diff --git a/swift/FPFundamentals/Podfile.lock b/swift/FPFundamentals/Podfile.lock new file mode 100644 index 0000000..8714a6e --- /dev/null +++ b/swift/FPFundamentals/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - Bow (0.3.0) + +DEPENDENCIES: + - Bow (~> 0.3.0) + +SPEC REPOS: + https://github.com/cocoapods/specs.git: + - Bow + +SPEC CHECKSUMS: + Bow: 00d66a7e26595923fc1b0aee922edaa84395b95d + +PODFILE CHECKSUM: 69bed93ecc4eda951e2072805026c59b0a0c29ae + +COCOAPODS: 1.6.0.beta.2