-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathEnsembles.podspec
59 lines (48 loc) · 1.91 KB
/
Ensembles.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
51
52
53
54
55
56
57
58
59
Pod::Spec.new do |s|
s.name = "Ensembles"
s.version = "1.10"
s.summary = "A peer-to-peer synchronization framework for Core Data."
s.description = <<-DESC
Ensembles extends Apple's Core Data framework to add
synchronization for Mac OS and iOS.
Multiple SQLite persistent stores can be coupled together
via a file synchronization platform like iCloud or Dropbox.
The framework can be readily extended to support any
service capable of moving files between devices, including
custom servers.
DESC
s.homepage = "https://github.com/drewmccormack/ensembles"
s.license = {
:type => 'MIT',
:file => 'LICENCE.txt'
}
s.author = { "Drew McCormack" => "drewmccormack@mac.com" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.8'
s.source = {
:git => 'https://github.com/drewmccormack/ensembles.git',
:tag => s.version.to_s
}
s.requires_arc = true
s.default_subspec = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'Framework/**/*.{h,m}'
ss.exclude_files = 'Framework/Tests', 'Framework/Extensions/**/*.{h,m}'
ss.resources = 'Framework/Resources/*'
ss.frameworks = 'CoreData'
end
s.subspec 'DropboxV2' do |ss|
# Bump deployment targets to match ObjectiveDropboxOfficial's
ss.ios.deployment_target = '9.0'
ss.osx.deployment_target = '10.10'
ss.dependency 'Ensembles/Core'
ss.dependency 'ObjectiveDropboxOfficial', '6.2.3'
ss.source_files = 'Framework/Extensions/CDEDropboxV2CloudFileSystem.{h,m}'
end
s.subspec 'Multipeer' do |ss|
ss.dependency 'Ensembles/Core'
ss.dependency 'SSZipArchive'
ss.framework = 'MultipeerConnectivity'
ss.source_files = 'Framework/Extensions/CDEMultipeerCloudFileSystem.{h,m}'
end
end