[Add] DAO (1.6.0)
This commit is contained in:
parent
47656e4723
commit
a9e23917a1
|
|
@ -0,0 +1,24 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'DAO'
|
||||
s.version = '1.6.0'
|
||||
s.summary = 'DAO Library'
|
||||
s.description = 'Library provides easy way to cache entities.'
|
||||
s.homepage = 'https://github.com/petropavel13/DAO'
|
||||
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
||||
s.author = { 'vani2' => 'iv@redmadrobot.com', 'hoppus' => 'e.popov@redmadrobot.com' }
|
||||
s.source = { :git => 'https://github.com/petropavel13/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
|
||||
Loading…
Reference in New Issue