forked from RxSwiftCommunity/RxRealmDataSources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RxRealmDataSources.podspec
30 lines (22 loc) · 1011 Bytes
/
RxRealmDataSources.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
Pod::Spec.new do |s|
s.name = 'RxRealmDataSources'
s.version = '0.2.10'
s.summary = 'Rx data sources for RxRealm`s observable types'
s.description = <<-DESC
This is an Rx extension that provides an easy and straight-forward way
to bind an RxRealm Observable type to a table or collection view on iOS and macOS
DESC
s.homepage = "https://github.com/RxSwiftCommunity/RxRealmDataSources"
s.license = 'MIT'
s.author = { "Marin Todorov" => "[email protected]" }
s.source = { :git => "https://github.com/RxSwiftCommunity/RxRealmDataSources.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.source_files = 'Pod/Classes/*.swift'
s.frameworks = 'Foundation'
s.dependency 'RealmSwift', '~> 3.10'
s.dependency 'RxSwift', '~> 5'
s.dependency 'RxCocoa', '~> 5'
s.dependency 'RxRealm', '~> 1'
end