jawngee / ModelKit

A better model framework for Objective-C
Other
108 stars 5 forks source link

CocoaPods #1

Open Ashton-W opened 12 years ago

Ashton-W commented 12 years ago

Would love to see this added to 'CocoaPods – an Objective-C library manager'

https://github.com/CocoaPods/CocoaPods

Ashton-W commented 12 years ago

You will need to choose an open source license before you can be added to CocoaPods.

Ashton-W commented 12 years ago

ModelKit doesn't have any version tags. The current HEAD can be added 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
jawngee commented 12 years ago

Hey Ashton,

Cocopods support is on my list. I've got a few bullet points to hit before I make it to even 0.1 though, but I will let you know when it's ready to go!

Thanks!

Jon.