ZipArchive/SSZipArchive.podspec
Sam Soffes bf95dc2fd4 Fix
2013-09-11 08:56:12 -07:00

15 lines
676 B
Ruby

Pod::Spec.new do |s|
s.name = 'SSZipArchive'
s.version = '0.3.1'
s.summary = 'Utility class for zipping and unzipping files on iOS and Mac.'
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.'
s.homepage = 'https://github.com/soffes/ssziparchive'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Sam Soffes' => 'sam@soff.es' }
s.source = { :git => 'https://github.com/soffes/ssziparchive.git', :tag => "v#{s.version}" }
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.6'
s.source_files = 'SSZipArchive/**/*',
s.library = 'z'
end