pyke369 / PKMultipartInputStream

an NSInputStream subclass suitable for building multipart/form-data http requests bodies in MacOSX/iOS applications.
http://github.com/pyke369/PKMultipartInputStream
MIT License
73 stars 19 forks source link

Add podspec #2

Closed rivera-ernesto closed 10 years ago

rivera-ernesto commented 10 years ago

Also the library in its current state is not OS X-compatible as it imports UIKit, and more important, requires MobileCoreServices.

I’ve recently added PKMultipartInputStream to the CocoaPods package manager repo.

CocoaPods is a tool for managing dependencies for OSX and iOS Xcode projects and provides a central repository for iOS/OSX libraries. This makes adding libraries to a project and updating them extremely easy and it will help users to resolve dependencies of the libraries they use.

However, PKMultipartInputStream doesn't have any version tags. I’ve added the current HEAD as version 0.0.1, but a version tag will make dependency resolution much easier.

Semantic version tags (instead of plain commit hashes/revisions) allow for resolution of cross-dependencies.

In case you didn’t know this yet; you can tag the current HEAD as, for instance, version 1.0.0, like so:

$ git tag -a 1.0.0 -m "Tag release 1.0.0"
$ git push --tags
pyke369 commented 10 years ago

I added a version tag and changed the .podspec accordingly.

rivera-ernesto commented 10 years ago

Cool. Don't forget to also pull request to https://github.com/CocoaPods/specs/pulls when you make a new release (tag).

What about OS X compatibility?