From d2d845437af5f4d70568b1276ba60764c5278e16 Mon Sep 17 00:00:00 2001 From: laiso Date: Thu, 18 Sep 2014 18:30:37 +0900 Subject: [PATCH] Fix #71 --- zipzap.podspec.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zipzap.podspec.json b/zipzap.podspec.json index 0c9bd036..8320fd58 100644 --- a/zipzap.podspec.json +++ b/zipzap.podspec.json @@ -1,6 +1,6 @@ { "name": "zipzap", - "version": "8.0", + "version": "8.0.1", "authors": { "Pixelglow Software": "glen.low@pixelglow.com" }, @@ -8,7 +8,7 @@ "homepage": "https://github.com/pixelglow/zipzap", "source": { "git": "https://github.com/pixelglow/zipzap.git", - "tag": "8.0" + "tag": "8.0.1" }, "summary": "zipzap is a zip file I/O library for Mac OS X and iOS.", "description": "The zip file is an ideal container for compound Objective-C documents. Zip files are widely used and well understood. You can randomly access their parts. The format compresses decently and has extensive operating system and tool support. So we want to make this format an even easier choice for you. Thus, the library features:\n\n- Easy-to-use interface: The public API offers just three classes! Yet you can look through zip files using familiar NSArray collections and properties. And you can zip, unzip and rezip zip files through familiar NSData, NSStream and Image I/O classes.\n- Efficient implementation: We've optimized zip file reading and writing to reduce virtual memory pressure and disk file thrashing. Depending on how your compound document is organized, updating a single entry can be faster than writing the same data to a separate file.\n- File format compatibility: Since zipzap closely follows the zip file format specification, it is works with most Mac, Linux and Windows zip tools.\n", @@ -31,7 +31,7 @@ "OTHER_CPLUSPLUSFLAGS": "-fno-exceptions" }, "source_files": "zipzap/*.{h,m,mm,cpp}", - "public_header_files": "zipzap/zipzap.h", + "public_header_files": ["zipzap/zipzap.h", "zipzap/ZZArchive.h", "zipzap/ZZArchiveEntry.h", "zipzap/ZZConstants.h", "zipzap/ZZError.h"], "ios": { "frameworks": [ "ImageIO" @@ -42,4 +42,4 @@ "ApplicationServices" ] } -} \ No newline at end of file +}