-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPuff.podspec
More file actions
36 lines (29 loc) · 930 Bytes
/
Puff.podspec
File metadata and controls
36 lines (29 loc) · 930 Bytes
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
Pod::Spec.new do |s|
s.name = 'Puff'
s.version = '0.6.3'
s.license = 'Apache 2'
s.summary = 'CloudKit wrapper'
s.homepage = 'https://github.com/coodly/Puff'
s.authors = { 'Jaanus Siim' => 'jaanus@coodly.com' }
s.source = { :git => 'git@github.com:coodly/Puff.git', :tag => s.version }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.3'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.source_files = 'Sources/Puff/*.swift'
core.dependency 'Puff/Serialization'
core.dependency 'Puff/Logger'
end
s.subspec 'CoreData' do |cd|
cd.source_files = "Sources/PuffCoreData/*.swift"
end
s.subspec 'Serialization' do |s|
s.source_files = "Sources/PuffSerialization/*.swift"
s.dependency 'Puff/Logger'
end
s.subspec 'Logger' do |l|
l.source_files = "Sources/PuffLogger/*.swift"
end
end