forked from Appboy/appboy-segment-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAdevinta-Segment-Appboy.podspec
50 lines (39 loc) · 1.58 KB
/
Adevinta-Segment-Appboy.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Pod::Spec.new do |s|
s.name = "Adevinta-Segment-Appboy"
s.version = "4.2.2"
s.summary = "AdevintaSpain's fork for Braze Integration for Segment's analytics-ios library."
s.description = <<-DESC
Analytics for iOS provides a single API that lets you
integrate with over 100s of tools.
This is the Braze integration for the iOS library.
DESC
s.homepage = "https://github.com/AdevintaSpain/appboy-segment-ios"
s.license = { :type => 'MIT' }
s.author = { "Appboy" => "hello@braze.com" }
s.source = { :git => "https://github.com/AdevintaSpain/appboy-segment-ios.git", :tag => s.version.to_s }
s.platform = :ios, '11.0'
s.requires_arc = true
s.dependency 'Analytics'
s.default_subspec = 'Full-SDK'
s.subspec 'Full-SDK' do |default|
default.platform = :ios
default.dependency 'Appboy-iOS-SDK', '~>4.7.0'
default.source_files = 'Pod/Classes/**/*'
end
s.subspec 'Core' do |core|
core.dependency 'Appboy-iOS-SDK/Core', '~>4.7.0'
core.source_files = 'Pod/Classes/**/*'
end
s.subspec 'InAppMessage' do |iam|
iam.dependency 'Appboy-iOS-SDK/InAppMessage', '~>4.7.0'
iam.source_files = 'Pod/Classes/**/*'
end
s.subspec 'NewsFeed' do |nf|
nf.dependency 'Appboy-iOS-SDK/NewsFeed', '~>4.7.0'
nf.source_files = 'Pod/Classes/**/*'
end
s.subspec 'ContentCards' do |cc|
cc.dependency 'Appboy-iOS-SDK/ContentCards', '~>4.7.0'
cc.source_files = 'Pod/Classes/**/*'
end
end