Sephiroth87 / ODRefreshControl

A pull down to refresh control like the one in Apple's iOS6 Mail App
MIT License
2.15k stars 385 forks source link

Added podspec #4

Closed MSNexploder closed 12 years ago

MSNexploder commented 12 years ago

I’ve recently added ODRefreshControl 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, ODRefreshControl 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
danthorpe commented 12 years ago

We could really do with update the podspec. There are a number of bugs fixed since the current podspec's commit hash and the current master: https://github.com/Sephiroth87/ODRefreshControl/compare/06e26ffead...master

I'm not entirely sure how to go about updating a podspec for a repo that I'm not the owner of, or I didn't add to CocoaPods...