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

set up for distribution through CocoaPods #4

Closed
reinpk opened this issue Mar 11, 2013 · 3 comments
Closed

set up for distribution through CocoaPods #4

reinpk opened this issue Mar 11, 2013 · 3 comments

Comments

@reinpk
Copy link
Contributor

reinpk commented Mar 11, 2013

No description provided.

@tonyxiao
Copy link
Contributor

Actually I was already using Cocoapods to integrate segment.io. Here's my snippet in case it's helpful.

Pod::Spec.new do |s|
  s.name     = 'Analytics'
  s.version  = '0.0.1'
  s.license  = 'MIT'
  s.summary  = 'Segment.io for Objective C'
  s.homepage = 'https://github.com/AFNetworking/AFNetworking'
  s.authors  = { 'Peter Reinhardt' => 'peter@segment.io' }
  s.source   = { :git => 'git@github.com:collections/analytics-objc.git', :commit => '898e05418c35fb7853f1915ad5fbe3d40265b4a8' }
  s.source_files = 'Analytics.{h,m}'
  s.requires_arc = true

  s.osx.deployment_target = '10.7'
  s.ios.deployment_target = '5.0'
end

@reinpk
Copy link
Contributor Author

reinpk commented Mar 12, 2013

nice, very much appreciate this, i'll tackle it tomorrow morning.

@reinpk
Copy link
Contributor Author

reinpk commented Mar 12, 2013

fixed by 68060c1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants