-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathDTModelStorage.podspec
27 lines (24 loc) · 977 Bytes
/
DTModelStorage.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
Pod::Spec.new do |s|
s.name = 'DTModelStorage'
s.version = "11.0.2"
s.license = 'MIT'
s.summary = 'Storage classes for datasource based controls.'
s.homepage = 'https://github.com/DenTelezhkin/DTModelStorage'
s.social_media_url = 'https://twitter.com/DenTelezhkin'
s.authors = { 'Denys Telezhkin' => 'denys.telezhkin.oss@gmail.com' }
s.source = { :git => 'https://github.com/DenTelezhkin/DTModelStorage.git', :tag => s.version.to_s }
s.swift_versions = ['5.3', '5.4', '5.5']
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.frameworks = 'UIKit', 'Foundation', 'CoreData'
s.subspec 'Core' do |core|
core.source_files = 'Sources/DTModelStorage/*.swift'
end
s.subspec 'Realm' do |realm|
realm.dependency 'DTModelStorage/Core'
realm.dependency 'RealmSwift', '~> 10.0'
realm.dependency 'Realm'
realm.source_files = 'Sources/RealmStorage/*.swift'
end
s.default_subspec = 'Core'
end