forked from segmentio/analytics-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Analytics.podspec
26 lines (22 loc) · 912 Bytes
/
Analytics.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Pod::Spec.new do |s|
s.name = "Analytics"
s.module_name = "Segment"
s.version = "4.1.8"
s.summary = "The hassle-free way to add analytics to your iOS app."
s.description = <<-DESC
Analytics for iOS provides a single API that lets you
integrate with over 100s of tools.
DESC
s.homepage = "http://segment.com/"
s.license = { :type => 'MIT' }
s.author = { "Segment" => "friends@segment.com" }
s.source = { :git => "https://github.com/segmentio/analytics-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/segment'
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.osx.deployment_target = '10.13'
s.source_files = [
'Segment/Classes/**/*.{h,m}',
'Segment/Internal/**/*.{h,m}'
]
end