Skip to content

Commit

Permalink
Update podspec to support both iOS and OSX
Browse files Browse the repository at this point in the history
  • Loading branch information
bdolman committed Nov 5, 2013
1 parent 18c74a7 commit 45811c1
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions Mixpanel-OSX-Community.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
Pod::Spec.new do |s|
s.name = 'Mixpanel-OSX-Community'
s.version = '2.0.0'
s.license = 'Apache License'
s.summary = 'OS X tracking library for Mixpanel Analytics.'
s.homepage = 'http://mixpanel.com'
s.author = { 'Mixpanel' => '[email protected]', "orta" => "[email protected]" }
s.source = { :git => 'https://github.com/orta/mixpanel-osx-unofficial.git', :tag => 'v2.0.0' }
s.frameworks = 'SystemConfiguration'
s.platform = :osx
s.source_files = 'Mixpanel/**/*.{h,m}'
s.name = 'Mixpanel-OSX-Community'
s.version = '2.1.0'
s.license = 'Apache License'
s.summary = 'OS X tracking library for Mixpanel Analytics.'
s.homepage = 'http://mixpanel.com'
s.author = { 'Mixpanel' => '[email protected]', "orta" => "[email protected]" }
s.source = { :git => 'https://github.com/orta/mixpanel-osx-unofficial.git', :tag => 'v2.0.0' }
s.source_files = 'Mixpanel/**/*.{h,m}'
s.osx.frameworks = 'Foundation', 'SystemConfiguration'
s.ios.frameworks = 'UIKit', 'Foundation', 'SystemConfiguration', 'CoreTelephony', 'AdSupport', 'Accelerate', 'CoreGraphics', 'QuartzCore'
s.ios.resources = ["Mixpanel/**/*.{png,storyboard}"]
s.osx.exclude_files = 'Mixpanel/**/MPSurvey*', 'Mixpanel/**/UI*'
s.private_header_files = 'Mixpanel/Library/**/*.h'
end

0 comments on commit 45811c1

Please sign in to comment.