-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRealmStorage.podspec
More file actions
34 lines (27 loc) · 1.1 KB
/
Copy pathRealmStorage.podspec
File metadata and controls
34 lines (27 loc) · 1.1 KB
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 = '2.1.1'
s.summary = 'A modern, actor-isolated wrapper for Realm.'
s.description = <<-DESC
RealmStorage wraps Realm in an actor-isolated, async/await-only API that is
safe under Swift 6 strict concurrency. Queries are built on Realm's native
type-safe Query, so no code generation or build phase is required.
DESC
s.homepage = 'https://github.com/AndrewKochulab/RealmStorage'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = 'Andrew Kochulab'
s.social_media_url = 'https://github.com/AndrewKochulab'
s.source = {
:git => 'https://github.com/AndrewKochulab/RealmStorage.git',
:tag => s.version.to_s
}
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.tvos.deployment_target = '13.0'
s.watchos.deployment_target = '6.0'
s.cocoapods_version = '>= 1.10.0'
s.swift_version = '6.0'
s.requires_arc = true
s.dependency 'RealmSwift', '~> 20.0'
s.source_files = 'Sources/RealmStorage/**/*.swift'
end