forked from RxSwiftCommunity/RxRealm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxRealm.podspec
31 lines (23 loc) · 1006 Bytes
/
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"
s.version = "2.0.0"
s.summary = "An Rx wrapper of Realm's notifications and write bindings"
s.swift_version = "5.0"
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.homepage = "https://github.com/RxSwiftCommunity/RxRealm"
s.license = 'MIT'
s.author = { "Marin Todorov" => "marin@underplot.com" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxRealm.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'Pod/Classes/*.swift'
s.frameworks = 'Foundation'
s.dependency 'RealmSwift', '~> 5.0-beta.1'
s.dependency 'RxSwift', '~> 5.0'
end