forked from happyfoxinc/helpstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelpStack.podspec
More file actions
40 lines (34 loc) · 1.27 KB
/
HelpStack.podspec
File metadata and controls
40 lines (34 loc) · 1.27 KB
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
Pod::Spec.new do |s|
s.name = "HelpStack"
s.version = "1.1.2"
s.summary = "In-app customer support framework"
s.description = 'See helpstack.io for more details'
s.homepage = "https://github.com/happyfoxinc/helpstack"
s.social_media_url = "https://twitter.com/helpstacksdk"
s.license = 'MIT'
s.author = { "HappyFox" => "ios@happyfox.com" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/happyfoxinc/helpstack.git", :tag => "1.1.2", :submodules => true }
s.resources = ['Resources/*.png','Resources/*.storyboard']
s.dependency 'AFNetworking', '~> 2.0'
s.frameworks = 'UIKit', 'CoreGraphics'
s.requires_arc = true
s.subspec 'Util' do |ss|
ss.source_files = 'Classes/Util/*.{h,m}'
end
s.subspec 'Core' do |ss|
ss.dependency 'HelpStack/Util'
ss.source_files = 'Classes/Core/*.{h,m}'
end
s.subspec 'Stacks' do |ss|
ss.dependency 'HelpStack/Util'
ss.dependency 'HelpStack/Core'
ss.source_files = 'Classes/Stacks/**/*.{h,m}'
end
s.subspec 'UI' do |ss|
ss.dependency 'HelpStack/Util'
ss.dependency 'HelpStack/Core'
ss.dependency 'HelpStack/Stacks'
ss.source_files = 'Classes/UI/*.{h,m}'
end
end