forked from Yalantis/DBClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBClient.podspec
31 lines (28 loc) · 1 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
Pod::Spec.new do |s|
s.name = 'DBClient'
s.version = '1.4.2'
s.requires_arc = true
s.summary = 'CoreData & Realm wrapper written on Swift'
s.homepage = ''
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Yalantis' => '[email protected]' }
s.source = { :git => 'https://github.com/Yalantis/DBClient.git', :tag => s.version }
s.social_media_url = 'https://yalantis.com/'
s.homepage = 'https://yalantis.com/'
s.ios.deployment_target = '10.0'
s.dependency 'YALResult', '1.4'
s.default_subspec = 'Core'
s.subspec 'Core' do |spec|
spec.source_files = ['DBClient/Core/*.swift']
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', '~> 3.15.0'
end
end