-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBLBackgroundRealm.podspec
40 lines (26 loc) · 1.71 KB
/
BLBackgroundRealm.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
35
36
37
38
39
40
Pod::Spec.new do |s|
s.name = "BLBackgroundRealm"
s.version = "1.0.5"
s.summary = "A collection of handy classes and extensions that make it easier to work with `Realm` in the background."
s.screenshot = "https://github.com/BellAppLab/BLBackgroundRealm/raw/master/Images/background_realm.png"
s.description = <<-DESC
BLBackgroundRealm is a collection of handy classes and extensions that make it easier to work with `Realm` 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 Swift counterpart, see [BackgroundRealm](https://github.com/BellAppLab/BackgroundRealm).
DESC
s.homepage = "https://github.com/BellAppLab/BLBackgroundRealm"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Bell App Lab" => "[email protected]" }
s.social_media_url = "https://twitter.com/BellAppLab"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "10.0"
s.watchos.deployment_target = "3.0"
s.module_name = 'BLBackgroundRealm'
s.header_dir = 'Headers'
s.source = { :git => "https://github.com/BellAppLab/BLBackgroundRealm.git", :tag => "#{s.version}" }
s.source_files = "BLBackgroundRealm", "Headers"
s.framework = "Foundation"
s.dependency 'Realm', '~> 3.0'
end