forked from Leanplum/Leanplum-Segment-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeanplumSegment.podspec
33 lines (26 loc) · 1.22 KB
/
LeanplumSegment.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
27
28
29
30
31
32
33
#
# Be sure to run `pod lib lint LeanplumSegment.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "LeanplumSegment"
version = `cat sdk-version.txt`
s.version = version
s.summary = "Leanplum SDK integration for the Segment iOS SDK."
s.description = "Mobile A/B testing, personalization & analytics in one powerful platform."
s.homepage = 'https://www.leanplum.com'
s.license = { :type => 'Commercial', :text => 'See https://www.leanplum.com/tos' }
s.author = { 'Leanplum' => '[email protected]' }
s.social_media_url = 'https://twitter.com/leanplum'
s.platform = :ios, '10.0'
s.requires_arc = true
s.source = { :git => "https://github.com/Leanplum/Leanplum-Segment-iOS.git", :tag => s.version.to_s }
s.source_files = 'Pod/Classes/**/*'
s.dependency 'Analytics', '~> 4'
s.dependency 'Leanplum-iOS-SDK', '~> 3'
s.module_name = 'LeanplumSegment'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
end