From f276d6badb946db31c3da4dc97d42facf01c9033 Mon Sep 17 00:00:00 2001 From: Matt Comi Date: Sun, 10 Apr 2016 12:39:31 +0800 Subject: [PATCH] Changed iOS deployment target and added podspec --- PersistentObject.podspec | 16 ++++++++++++++++ PersistentObject.xcodeproj/project.pbxproj | 2 ++ 2 files changed, 18 insertions(+) create mode 100644 PersistentObject.podspec diff --git a/PersistentObject.podspec b/PersistentObject.podspec new file mode 100644 index 0000000..2526aee --- /dev/null +++ b/PersistentObject.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "PersistentObject" + s.version = "0.1.0" + s.summary = "Simplifies object persistence in Swift." + + s.homepage = "https://github.com/mattcomi/PersistentObject" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Matt Comi" => "mattcomi@gmail.com" } + + s.source = { :git => "https://github.com/mattcomi/PersistentObject.git", :tag => "#{s.version}"} + s.source_files = "PersistentObject/*.{swift}" + s.requires_arc = true + + s.platform = :ios + s.ios.deployment_target = '8.0' +end \ No newline at end of file diff --git a/PersistentObject.xcodeproj/project.pbxproj b/PersistentObject.xcodeproj/project.pbxproj index 04b02f0..42c8289 100644 --- a/PersistentObject.xcodeproj/project.pbxproj +++ b/PersistentObject.xcodeproj/project.pbxproj @@ -321,6 +321,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = PersistentObject/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.bigbucketsoftware.PersistentObject; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -339,6 +340,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = PersistentObject/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.bigbucketsoftware.PersistentObject; PRODUCT_NAME = "$(TARGET_NAME)";