Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a311e60107 | ||
|
|
69fb8f4a4c | ||
|
|
1d163e4db5 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@
|
||||
*.perspectivev3
|
||||
*.xcworkspace
|
||||
xcuserdata
|
||||
DerivedData
|
||||
|
||||
2
LICENSE
2
LICENSE
@@ -1,4 +1,4 @@
|
||||
Copyright (c) 2010-2012 Sam Soffes
|
||||
Copyright (c) 2010-2013 Sam Soffes
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
// SSZipArchive
|
||||
//
|
||||
// Created by Sam Soffes on 7/21/10.
|
||||
// Copyright (c) Sam Soffes 2010-2011. All rights reserved.
|
||||
// Copyright (c) Sam Soffes 2010-2013. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
// SSZipArchive
|
||||
//
|
||||
// Created by Sam Soffes on 7/21/10.
|
||||
// Copyright (c) Sam Soffes 2010-2011. All rights reserved.
|
||||
// Copyright (c) Sam Soffes 2010-2013. All rights reserved.
|
||||
//
|
||||
|
||||
#import "SSZipArchive.h"
|
||||
@@ -349,6 +349,7 @@
|
||||
|
||||
zipCloseFileInZip(_zip);
|
||||
free(buffer);
|
||||
fclose(input);
|
||||
return YES;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,18 +1,15 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'SSZipArchive'
|
||||
s.version = '0.2.2'
|
||||
s.summary = 'Utility class for zipping and unzipping files on iOS and Mac.'
|
||||
s.homepage = 'https://github.com/samsoffes/ssziparchive'
|
||||
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.library = 'z'
|
||||
s.preserve_paths = ['Tests', '.gitignore']
|
||||
s.name = 'SSZipArchive'
|
||||
s.version = '0.2.3'
|
||||
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' }
|
||||
|
||||
# Maintain the dir structure for headers
|
||||
def s.copy_header_mapping(from)
|
||||
from
|
||||
end
|
||||
s.author = { 'Sam Soffes' => 'sam@soff.es' }
|
||||
s.source = { :git => 'https://github.com/soffes/ssziparchive.git', :tag => '0.2.3' }
|
||||
s.ios.deployment_target = '4.0'
|
||||
s.osx.deployment_target = '10.6'
|
||||
s.source_files = 'SSZipArchive.{h,m}', 'minizip/*.{h,c}'
|
||||
s.preserve_paths = 'minizip'
|
||||
s.library = 'z'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user