Update pod spec to prevent *.podspec file from being included as a source file when the pod is installed.

This commit is contained in:
David Robles
2012-08-16 15:04:59 -07:00
parent 3e2424437f
commit a53f908392
+1 -1
View File
@@ -6,7 +6,7 @@ Pod::Spec.new do |s|
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/samsoffes/ssziparchive.git', :tag => '0.2.2' }
s.description = 'SSZipArchive is a simple utility class for zipping and unzipping files on iOS and Mac.'
s.source_files = 'SSZipArchive.*', 'minizip/*.{h,c}'
s.source_files = 'SSZipArchive.{h,m}', 'minizip/*.{h,c}'
s.library = 'z'
s.preserve_paths = ['Tests', '.gitignore']
s.license = { :type => 'MIT', :file => 'LICENSE' }