File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RxDataSources"
3
- s . version = "1.0.0-beta.2 "
3
+ s . version = "1.0.0-beta.3 "
4
4
s . summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
5
5
s . description = <<-DESC
6
6
This is a collection of reactive data sources for UITableView and UICollectionView.
@@ -12,7 +12,7 @@ let data: Obserable<Section> = ...
12
12
13
13
let dataSource = RxTableViewSectionedAnimatedDataSource<Section>()
14
14
dataSource.cellFactory = { (tv, ip, i) in
15
- let cell =tv.dequeueReusableCellWithIdentifier("Cell") ?? UITableViewCell(style:.Default, reuseIdentifier: "Cell")
15
+ let cell = tv.dequeueReusableCellWithIdentifier("Cell") ?? UITableViewCell(style:.Default, reuseIdentifier: "Cell")
16
16
cell.textLabel!.text = "\( i)"
17
17
return cell
18
18
}
40
40
41
41
s . source_files = 'Sources/**/*.swift'
42
42
43
- s . dependency 'RxSwift' , '~> 3.0.0-beta.1 '
44
- s . dependency 'RxCocoa' , '~> 3.0.0-beta.1 '
43
+ s . dependency 'RxSwift' , '~> 3.0.0-beta.2 '
44
+ s . dependency 'RxCocoa' , '~> 3.0.0-beta.2 '
45
45
end
You can’t perform that action at this time.
0 commit comments