forked from Yalantis/DBClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBClient.podspec
35 lines (29 loc) · 1.01 KB
/
DBClient.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
Pod::Spec.new do |s|
s.name = "DBClient"
s.version = "0.4.2"
s.requires_arc = true
s.summary = "CoreData & Realm wrapper written on Swift"
s.homepage = ""
s.license = 'MIT'
s.author = { "Yalantis" => "[email protected]" }
s.source = { :git => "https://git.yalantis.com/roman.kyrylenko/DBClient.git" }
s.social_media_url = 'https://yalantis.com/'
s.homepage = 'https://yalantis.com/'
s.ios.deployment_target = "9.0"
s.default_subspec = "Core"
s.subspec "Core" do |spec|
spec.source_files = ['DBClient/Core/*.swift']
spec.dependency "Bolts-Swift", "~> 1.3.0"
spec.frameworks = ['Foundation']
end
s.subspec "CoreData" do |spec|
spec.dependency "DBClient/Core"
spec.source_files = ['DBClient/CoreData/*.swift']
spec.frameworks = ['CoreData']
end
s.subspec "Realm" do |spec|
spec.dependency "DBClient/Core"
spec.source_files = ['DBClient/Realm/*.swift']
spec.dependency "RealmSwift", "~> 2.1.1"
end
end