forked from RxSwiftCommunity/RxDataSources
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReactiveDataSources.podspec
More file actions
27 lines (21 loc) · 1.06 KB
/
ReactiveDataSources.podspec
File metadata and controls
27 lines (21 loc) · 1.06 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
Pod::Spec.new do |s|
s.name = "ReactiveDataSources"
s.version = "1.0.0"
s.summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
s.description = <<-DESC
This is a collection of reactive data sources for UITableView and UICollectionView.
It enables creation of animated data sources for table an collection views in just a couple of lines of code.
DESC
s.homepage = "https://github.com/Omn1/ReactiveDataSources"
s.license = 'MIT'
s.author = { "Daniil Ostashev" => "daniil.ostashev@cruxlab.com" }
s.source = { :git => "https://github.com/Omn1/ReactiveDataSources.git", :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'ReactiveDataSources/**/*.swift'
s.dependency 'Differentiator', '~> 4.0'
s.dependency 'ReactiveSwift', '~> 6.0'
s.dependency 'ReactiveCocoa', '~> 10.0'
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
end