-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBackgroundRealm.podspec
More file actions
42 lines (27 loc) · 1.77 KB
/
BackgroundRealm.podspec
File metadata and controls
42 lines (27 loc) · 1.77 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
35
36
37
38
39
40
41
42
Pod::Spec.new do |s|
s.name = "BackgroundRealm"
s.version = "4.0.0"
s.summary = "A collection of handy classes and extensions that make it easier to work with `RealmSwift` in the background."
s.screenshot = "https://github.com/BellAppLab/BackgroundRealm/raw/main/Images/background_realm.png"
s.description = <<-DESC
Background Realm is a collection of handy classes and extensions that make it easier to work with `RealmSwift` in the background.
It's main focus is to enhance existing `Realm`s and Realm-based code bases with very little overhead and refactoring.
**Note**: Although this module makes it more convenient to work with a `Realm` in the background, it does **not** make `Realm`s nor its objects thread-safe. They should still be accessed only from within their appropriate thread.
For the Objective-C counterpart, see [BLBackgroundRealm](https://github.com/BellAppLab/BLBackgroundRealm).
DESC
s.homepage = "https://github.com/BellAppLab/BackgroundRealm"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Bell App Lab" => "apps@bellapplab.com" }
s.social_media_url = "https://twitter.com/BellAppLab"
s.swift_version = '5.0', '5.1', '5.2', '5.3'
s.ios.deployment_target = "12.0"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "12.0"
s.watchos.deployment_target = "4.0"
s.module_name = 'BackgroundRealm'
s.source = { :git => "https://github.com/BellAppLab/BackgroundRealm.git", :tag => "#{s.version}" }
s.source_files = "Sources/BackgroundRealm"
s.framework = "Foundation"
s.dependency 'Realm', '~> 10.0'
s.dependency 'RealmSwift', '~> 10.0'
end