Files
ZipArchive/SSZipArchive.podspec
T

15 lines
676 B
Ruby
Raw Normal View History

2012-06-02 13:32:36 -07:00
Pod::Spec.new do |s|
2013-01-29 01:53:49 -05:00
s.name = 'SSZipArchive'
2013-09-09 09:04:04 -07:00
s.version = '0.3.1'
2013-01-29 01:53:49 -05:00
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'
2012-06-02 13:32:36 -07:00
s.license = { :type => 'MIT', :file => 'LICENSE' }
2013-01-29 01:53:49 -05:00
s.author = { 'Sam Soffes' => 'sam@soff.es' }
2013-07-16 10:20:46 -04:00
s.source = { :git => 'https://github.com/soffes/ssziparchive.git', :tag => "v#{s.version}" }
2013-01-29 01:53:49 -05:00
s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.6'
2013-09-11 08:56:12 -07:00
s.source_files = 'SSZipArchive/**/*',
2013-09-09 09:04:04 -07:00
s.library = 'z'
2012-06-02 13:32:36 -07:00
end