-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRealmStorage.podspec
34 lines (26 loc) · 1.01 KB
/
RealmStorage.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
Pod::Spec.new do |s|
s.name = 'RealmStorage'
s.version = '1.0.4'
s.summary = 'RealmStorage'
s.description = <<-DESC
Modern wrapper for Realm Database [iOS, macOS, tvOS & watchOS]
DESC
s.homepage = 'https://github.com/AndrewKochulab/RealmStorage'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = 'Andrew Kochulab'
s.source = {
:git => 'https://github.com/AndrewKochulab/RealmStorage.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://github.com/AndrewKochulab'
s.platform = :ios, "9.0"
s.cocoapods_version = '>= 1.4.0'
s.swift_version = '5.2'
s.requires_arc = true
s.dependency 'Realm'
s.dependency 'RealmSwift'
s.dependency 'Sourcery'
s.dependency 'KeychainSwift'
s.source_files = "Sources/RealmStorage/**/*.{swift, h}"
s.preserve_paths = [ 'Sources/RealmStorage/PredicateFlow/Core/Templates', 'Sources/RealmStorage/PredicateFlow/Core/Classes/Utils' ]
end