-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesman.podspec
More file actions
32 lines (29 loc) · 1.43 KB
/
Desman.podspec
File metadata and controls
32 lines (29 loc) · 1.43 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
Pod::Spec.new do |s|
s.name = 'Desman'
s.version = '1.0.3'
s.summary = 'An event tracking tool for mobile apps.'
s.homepage = 'https://desman.dimension.it'
s.license = 'MIT'
s.authors = [ 'Matteo Gavagnin' => 'matteo.gavagnin@dimension.it', 'Dimension S.r.l.' => 'info@dimension.it' ]
s.social_media_url = 'https://twitter.com/macteo'
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/dimensionsrl/desman.git', :tag => "v#{s.version}"}
s.requires_arc = true
s.frameworks = [ 'Photos', 'CoreData' ]
s.default_subspec = 'Core'
s.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DDESMAN_AS_COCOAPOD' }
s.subspec 'Core' do |core|
core.source_files = 'Desman/Core/**/*.swift'
core.resources = [ 'Desman/Core/Assets/**/*.xcassets', 'Desman/Core/Assets/*.storyboard', 'Desman/Core/Resources/**']
end
s.subspec 'Debatable' do |debatable|
debatable.dependency 'Desman/Core'
debatable.source_files = 'Desman/Debatable/**/*.swift'
end
# s.subspec 'Remote' do |remote|
# remote.dependency 'Desman/Core'
# remote.dependency 'SwiftWebSocket', '~> 2.6.5'
# remote.source_files = 'Desman/Remote/**/*.swift'
# remote.resources = [ 'Desman/Remote/Assets/**/*.xcassets', 'Desman/Remote/Assets/*.storyboard' ]
# end
end