-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathDAO.podspec
24 lines (21 loc) · 949 Bytes
/
DAO.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
Pod::Spec.new do |s|
s.name = 'DAO'
s.version = '1.6.1'
s.summary = 'DAO Library'
s.description = 'Library provides easy way to cache entities.'
s.homepage = 'https://github.com/RedMadRobot/DAO'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'vani2' => '[email protected]', 'hoppus' => '[email protected]' }
s.source = { :git => 'https://github.com/RedMadRobot/DAO.git', :tag => s.version, :submodules => true }
s.platform = :ios, '9.0'
s.swift_version = '5.3'
s.source_files = 'DAO/Classes/Core/**/*'
s.subspec 'Realm' do |r|
r.source_files = 'DAO/Classes/RealmDAO/**/*', 'DAO/Classes/Core/**/*'
r.dependency "Realm", '~> 10.1'
r.dependency "RealmSwift", '~> 10.1'
end
s.subspec 'CoreData' do |cd|
cd.source_files = 'DAO/Classes/CoreDataDAO/**/*', 'DAO/Classes/Core/**/*'
end
end