Skip to content

Commit

Permalink
Changed iOS deployment target and added podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Comi authored and Matt Comi committed Apr 10, 2016
1 parent 17f507b commit f276d6b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions PersistentObject.podspec
Original file line number Diff line number Diff line change
@@ -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" => "[email protected]" }

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
2 changes: 2 additions & 0 deletions PersistentObject.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -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)";
Expand All @@ -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)";
Expand Down

0 comments on commit f276d6b

Please sign in to comment.