-
Notifications
You must be signed in to change notification settings - Fork 269
/
RxRealm.podspec
31 lines (26 loc) · 1.03 KB
/
RxRealm.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
Pod::Spec.new do |s|
s.name = "RxRealm"
# Version to always follow latest tag, with fallback to major
s.version = "5.0.8"
s.license = "MIT"
s.description = <<-DESC
This is an Rx extension that provides an easy and straight-forward way
to use Realm's natively reactive collection type as an Observable
DESC
s.summary = "An Rx wrapper of Realm's notifications and write bindings"
s.homepage = "https://github.com/RxSwiftCommunity/RxRealm"
s.authors = { "RxSwift Community" => "community@rxswift.org" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxRealm.git", :tag => "v" + s.version.to_s }
s.swift_version = "5.1"
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.requires_arc = true
s.source_files = "Sources/RxRealm/*.swift"
s.frameworks = "Foundation"
s.dependency "Realm", "~> 10.50"
s.dependency "RealmSwift", "~> 10.50"
s.dependency "RxSwift", "~> 6.1"
s.dependency "RxCocoa", "~> 6.1"
end