noahsw / google-analytics-sdk-for-osx

Track usage of OS X applications
MIT License
56 stars 9 forks source link

Make it into a Cocoapod #5

Closed holgersindbaek closed 10 years ago

holgersindbaek commented 11 years ago

Would that be possible?

noahsw commented 11 years ago

I haven't worked with Cocoapods before but it looks cool. Can you submit a pull request?

markrickert commented 11 years ago

Before this can be done, YOU (the repos owner) have to tag a commit as a release version... typically something like v1.0.0 or v0.0.1

noahsw commented 11 years ago

Okay - done.

vtourraine commented 10 years ago

Cheers, the pod is now available on the master repo.

pod 'GoogleAnalyticsSDKForOSX'
hankinsoft commented 10 years ago

There was a commit the day after this that added the sharedHelper. Could that possibly be commited to the pod file?

vtourraine commented 10 years ago

Pods are indexed on git tags, so it would require a new tag (1.0.1, for instance) to include the latest commits.

If you need a faster solution, you can use pod 'GoogleAnalyticsSDKForOSX', :head in your Podfile, to make sure you always get the new stuff (not always a good thing, but that’s an option).