Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #71 : Add headers to podspec. #73

Merged
merged 1 commit into from
Sep 18, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions zipzap.podspec.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "zipzap",
"version": "8.0",
"version": "8.0.1",
"authors": {
"Pixelglow Software": "glen.low@pixelglow.com"
},
"license": "BSD",
"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",
Expand All @@ -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"
Expand All @@ -42,4 +42,4 @@
"ApplicationServices"
]
}
}
}