Skip to content

Commit ef5cb22

Browse files
committed
Refactor(renamed): replace object(dataSource:) with object(for:)
1 parent de0274e commit ef5cb22

21 files changed

+2243
-2228
lines changed

Example/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PODS:
77
- RxCocoa (5.0.0):
88
- RxRelay (~> 5)
99
- RxSwift (~> 5)
10-
- RxIGListKit (1.0.0):
10+
- RxIGListKit (1.0.1):
1111
- IGListKit
1212
- RxCocoa
1313
- RxRelay (5.0.0):
@@ -31,10 +31,10 @@ EXTERNAL SOURCES:
3131
SPEC CHECKSUMS:
3232
IGListKit: 7a5d788e9fb746bcd402baa8e8b24bc3bd2a5a07
3333
RxCocoa: fcf32050ac00d801f34a7f71d5e8e7f23026dcd8
34-
RxIGListKit: 9bead79aa1e3be6a7a3e06c2359b2e8fc98f28ea
34+
RxIGListKit: 3227968d97c075acfa90f305336cc328468c8759
3535
RxRelay: 4f7409406a51a55cd88483f21ed898c234d60f18
3636
RxSwift: 8b0671caa829a763bbce7271095859121cbd895f
3737

3838
PODFILE CHECKSUM: 2f55325866dc3334483180691ade683b2d17a20f
3939

40-
COCOAPODS: 1.6.1
40+
COCOAPODS: 1.7.5

Example/Pods/Local Podspecs/RxIGListKit.podspec.json

Lines changed: 8 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 2195 additions & 2195 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-RxIGListKit_Example/Pods-RxIGListKit_Example-frameworks.sh

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-RxIGListKit_Tests/Pods-RxIGListKit_Tests.debug.xcconfig

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-RxIGListKit_Tests/Pods-RxIGListKit_Tests.release.xcconfig

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/RxIGListKit/RxIGListKit-Info.plist

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/RxIGListKit.xcodeproj/project.pbxproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -452,13 +452,9 @@
452452
buildActionMask = 2147483647;
453453
files = (
454454
);
455-
inputFileListPaths = (
456-
);
457455
inputPaths = (
458456
);
459457
name = "[CP] Embed Pods Frameworks";
460-
outputFileListPaths = (
461-
);
462458
outputPaths = (
463459
);
464460
runOnlyForDeploymentPostprocessing = 0;

Example/RxIGListKit/EmptyViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class EmptyViewController: UIViewController {
5353
return self?.emptyLabel
5454
})
5555

56-
objectSignal.bind(to: adapter.rx.objects(dataSource: dataSource)).disposed(by: bag)
56+
objectSignal.bind(to: adapter.rx.objects(for: dataSource)).disposed(by: bag)
5757

5858
let addSignal = addItem.rx.tap.withLatestFrom(objectSignal).map { (old) -> [Int] in
5959
let count = old.count

0 commit comments

Comments
 (0)