File tree Expand file tree Collapse file tree 2 files changed +28
-13
lines changed Expand file tree Collapse file tree 2 files changed +28
-13
lines changed Original file line number Diff line number Diff line change
1
+ Pod ::Spec . new do |s |
2
+ s . name = "Differentiator"
3
+ s . version = "2.0.0"
4
+ s . summary = "Diff algorithm for UITableView and UICollectionView."
5
+ s . description = <<-DESC
6
+ Diff algorithm for UITableView and UICollectionView.
7
+ RxDataSources is powered by Differentiator.
8
+ DESC
9
+
10
+ s . homepage = "https://github.com/ReactiveX/RxSwift"
11
+ s . license = 'MIT'
12
+ s . author = { "Krunoslav Zaher" => "[email protected] " }
13
+ s . source = { :git => "https://github.com/RxSwiftCommunity/RxDataSources.git" , :tag => s . version . to_s }
14
+
15
+ s . requires_arc = true
16
+
17
+ s . source_files = 'Sources/Differentiator/**/*.swift'
18
+
19
+ s . ios . deployment_target = '8.0'
20
+ s . tvos . deployment_target = '9.0'
21
+
22
+ end
Original file line number Diff line number Diff line change 28
28
.disposed(by: disposeBag)
29
29
```
30
30
DESC
31
-
32
- s . subspec 'Diffing' do |ds |
33
- ds . source_files = 'Sources/Differentiator/**/*.swift'
34
- end
35
-
36
- s . subspec 'Default' do |cs |
37
- cs . dependency 'RxDataSources/Diffing'
38
- cs . source_files = 'Sources/RxDataSources/*.swift'
39
- end
40
-
31
+
41
32
s . homepage = "https://github.com/ReactiveX/RxSwift"
42
33
s . license = 'MIT'
43
34
s . author = { "Krunoslav Zaher" => "[email protected] " }
44
35
s . source = { :git => "https://github.com/RxSwiftCommunity/RxDataSources.git" , :tag => s . version . to_s }
45
36
46
- s . default_subspec = 'Default'
47
37
s . requires_arc = true
38
+
39
+ s . source_files = 'Sources/RxDataSources/**/*.swift'
40
+ s . dependency 'Differentiator' , '~> 2.0'
41
+ s . dependency 'RxSwift' , '~> 3.0'
42
+ s . dependency 'RxCocoa' , '~> 3.0'
48
43
49
44
s . ios . deployment_target = '8.0'
50
45
s . tvos . deployment_target = '9.0'
51
46
52
- s . dependency 'RxSwift' , '~> 3.0'
53
- s . dependency 'RxCocoa' , '~> 3.0'
54
47
end
You can’t perform that action at this time.
0 commit comments