From c1af3293ed4643eb560eba6012961ac449f40341 Mon Sep 17 00:00:00 2001 From: Jasdeep Saini Date: Tue, 5 Apr 2016 22:25:05 -0500 Subject: [PATCH 1/2] Added support for watchos to the podspec. --- SSZipArchive.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/SSZipArchive.podspec b/SSZipArchive.podspec index 2ef721c..3053b6e 100644 --- a/SSZipArchive.podspec +++ b/SSZipArchive.podspec @@ -10,6 +10,7 @@ Pod::Spec.new do |s| s.ios.deployment_target = '4.0' s.tvos.deployment_target = '9.0' s.osx.deployment_target = '10.6' + s.watchos.deployment_target = '2.0' s.source_files = 'SSZipArchive/*.m', 'SSZipArchive/*.h', 'SSZipArchive/minizip/*', 'SSZipArchive/aes/*' s.public_header_files = 'SSZipArchive/*.h' s.library = 'z' From dd704514eda9c2c6cc51357b548213af81bdf075 Mon Sep 17 00:00:00 2001 From: Jasdeep Saini Date: Tue, 5 Apr 2016 22:57:26 -0500 Subject: [PATCH 2/2] Updated the summary and description for the podspec to include watchOS. --- SSZipArchive.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SSZipArchive.podspec b/SSZipArchive.podspec index 3053b6e..9668dae 100644 --- a/SSZipArchive.podspec +++ b/SSZipArchive.podspec @@ -1,8 +1,8 @@ Pod::Spec.new do |s| s.name = 'SSZipArchive' s.version = '1.1' - s.summary = 'Utility class for zipping and unzipping files on iOS, tvOS, and Mac.' - s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS, tvOS, and Mac.' + s.summary = 'Utility class for zipping and unzipping files on iOS, tvOS, watchOS, and Mac.' + s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS, tvOS, watchOS, and Mac.' s.homepage = 'https://github.com/ZipArchive/ZipArchive' s.license = { :type => 'MIT', :file => 'LICENSE.txt' } s.author = { 'Sam Soffes' => 'sam@soff.es' }