Skip to content

Commit dad8948

Browse files
committed
Adapts structure for Xcode 10.
1 parent ca05ff6 commit dad8948

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2040
-618
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "RxSwift"]
22
path = RxSwift
33
url = https://github.com/ReactiveX/RxSwift.git
4+
[submodule "Examples/RxSwift"]
5+
path = Examples/RxSwift
6+
url = https://github.com/ReactiveX/RxSwift.git

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
77
* Reduce computational complexity. #242
88
* Adapted for RxSwift 4.2
99

10+
## [3.1.0](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/3.1.0)
11+
12+
* Xcode 10.0 compatibility.
13+
1014
## [3.0.2](https://github.com/RxSwiftCommunity/RxDataSources/releases/tag/3.0.2)
1115

1216
* Makes `configureSupplementaryView` optional for reload data source. #186

Cartfile.resolved

Lines changed: 0 additions & 1 deletion
This file was deleted.

Differentiator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Differentiator"
3-
s.version = "3.0.2"
3+
s.version = "3.1.0"
44
s.summary = "Diff algorithm for UITableView and UICollectionView."
55
s.description = <<-DESC
66
Diff algorithm for UITableView and UICollectionView.

Examples/Example.xcodeproj/project.pbxproj

Lines changed: 1540 additions & 0 deletions
Large diffs are not rendered by default.

Examples/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "4DD6810907F5B741470171C4B7D7EC023CD6437A",
3+
"DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : {
4+
5+
},
6+
"DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : {
7+
"4DD6810907F5B741470171C4B7D7EC023CD6437A" : 9223372036854775807,
8+
"8B123162C394A0A0A138779108E4C59DD771865A" : 9223372036854775807
9+
},
10+
"DVTSourceControlWorkspaceBlueprintIdentifierKey" : "799ED22B-FD39-44D8-8A0A-FB9B3854EA6B",
11+
"DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : {
12+
"4DD6810907F5B741470171C4B7D7EC023CD6437A" : "RxDataSources\/",
13+
"8B123162C394A0A0A138779108E4C59DD771865A" : "RxDataSources\/RxSwift\/"
14+
},
15+
"DVTSourceControlWorkspaceBlueprintNameKey" : "RxDataSources",
16+
"DVTSourceControlWorkspaceBlueprintVersion" : 204,
17+
"DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "RxDataSources.xcodeproj",
18+
"DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [
19+
{
20+
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "github.com:RxSwiftCommunity\/RxDataSources.git",
21+
"DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
22+
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "4DD6810907F5B741470171C4B7D7EC023CD6437A"
23+
},
24+
{
25+
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/ReactiveX\/RxSwift.git",
26+
"DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git",
27+
"DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "8B123162C394A0A0A138779108E4C59DD771865A"
28+
}
29+
]
30+
}
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0900"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "C82C3C531F3B937500309AE8"
18+
BuildableName = "Differentiator.framework"
19+
BlueprintName = "Differentiator"
20+
ReferencedContainer = "container:RxDataSources.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
30+
shouldUseLaunchSchemeArgsEnv = "YES">
31+
<Testables>
32+
</Testables>
33+
<AdditionalOptions>
34+
</AdditionalOptions>
35+
</TestAction>
36+
<LaunchAction
37+
buildConfiguration = "Debug"
38+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
39+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
40+
language = ""
41+
launchStyle = "0"
42+
useCustomWorkingDirectory = "NO"
43+
ignoresPersistentStateOnLaunch = "NO"
44+
debugDocumentVersioning = "YES"
45+
debugServiceExtension = "internal"
46+
allowLocationSimulation = "YES">
47+
<MacroExpansion>
48+
<BuildableReference
49+
BuildableIdentifier = "primary"
50+
BlueprintIdentifier = "C82C3C531F3B937500309AE8"
51+
BuildableName = "Differentiator.framework"
52+
BlueprintName = "Differentiator"
53+
ReferencedContainer = "container:RxDataSources.xcodeproj">
54+
</BuildableReference>
55+
</MacroExpansion>
56+
<AdditionalOptions>
57+
</AdditionalOptions>
58+
</LaunchAction>
59+
<ProfileAction
60+
buildConfiguration = "Release"
61+
shouldUseLaunchSchemeArgsEnv = "YES"
62+
savedToolIdentifier = ""
63+
useCustomWorkingDirectory = "NO"
64+
debugDocumentVersioning = "YES">
65+
<MacroExpansion>
66+
<BuildableReference
67+
BuildableIdentifier = "primary"
68+
BlueprintIdentifier = "C82C3C531F3B937500309AE8"
69+
BuildableName = "Differentiator.framework"
70+
BlueprintName = "Differentiator"
71+
ReferencedContainer = "container:RxDataSources.xcodeproj">
72+
</BuildableReference>
73+
</MacroExpansion>
74+
</ProfileAction>
75+
<AnalyzeAction
76+
buildConfiguration = "Debug">
77+
</AnalyzeAction>
78+
<ArchiveAction
79+
buildConfiguration = "Release"
80+
revealArchiveInOrganizer = "YES">
81+
</ArchiveAction>
82+
</Scheme>
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0900"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "C8984C9A1C36B6FA001E4272"
18+
BuildableName = "Example.app"
19+
BlueprintName = "Example"
20+
ReferencedContainer = "container:RxDataSources.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
30+
shouldUseLaunchSchemeArgsEnv = "YES">
31+
<Testables>
32+
<TestableReference
33+
skipped = "NO">
34+
<BuildableReference
35+
BuildableIdentifier = "primary"
36+
BlueprintIdentifier = "C8984CB01C36B723001E4272"
37+
BuildableName = "ExampleUITests.xctest"
38+
BlueprintName = "ExampleUITests"
39+
ReferencedContainer = "container:RxDataSources.xcodeproj">
40+
</BuildableReference>
41+
</TestableReference>
42+
<TestableReference
43+
skipped = "NO">
44+
<BuildableReference
45+
BuildableIdentifier = "primary"
46+
BlueprintIdentifier = "C81905AD1DEA019100AE679C"
47+
BuildableName = "Tests.xctest"
48+
BlueprintName = "Tests"
49+
ReferencedContainer = "container:RxDataSources.xcodeproj">
50+
</BuildableReference>
51+
</TestableReference>
52+
</Testables>
53+
<MacroExpansion>
54+
<BuildableReference
55+
BuildableIdentifier = "primary"
56+
BlueprintIdentifier = "C8984C9A1C36B6FA001E4272"
57+
BuildableName = "Example.app"
58+
BlueprintName = "Example"
59+
ReferencedContainer = "container:RxDataSources.xcodeproj">
60+
</BuildableReference>
61+
</MacroExpansion>
62+
<AdditionalOptions>
63+
</AdditionalOptions>
64+
</TestAction>
65+
<LaunchAction
66+
buildConfiguration = "Debug"
67+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
68+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
69+
language = ""
70+
launchStyle = "0"
71+
useCustomWorkingDirectory = "NO"
72+
ignoresPersistentStateOnLaunch = "NO"
73+
debugDocumentVersioning = "YES"
74+
debugServiceExtension = "internal"
75+
allowLocationSimulation = "YES">
76+
<BuildableProductRunnable
77+
runnableDebuggingMode = "0">
78+
<BuildableReference
79+
BuildableIdentifier = "primary"
80+
BlueprintIdentifier = "C8984C9A1C36B6FA001E4272"
81+
BuildableName = "Example.app"
82+
BlueprintName = "Example"
83+
ReferencedContainer = "container:RxDataSources.xcodeproj">
84+
</BuildableReference>
85+
</BuildableProductRunnable>
86+
<AdditionalOptions>
87+
</AdditionalOptions>
88+
</LaunchAction>
89+
<ProfileAction
90+
buildConfiguration = "Release"
91+
shouldUseLaunchSchemeArgsEnv = "YES"
92+
savedToolIdentifier = ""
93+
useCustomWorkingDirectory = "NO"
94+
debugDocumentVersioning = "YES">
95+
<BuildableProductRunnable
96+
runnableDebuggingMode = "0">
97+
<BuildableReference
98+
BuildableIdentifier = "primary"
99+
BlueprintIdentifier = "C8984C9A1C36B6FA001E4272"
100+
BuildableName = "Example.app"
101+
BlueprintName = "Example"
102+
ReferencedContainer = "container:RxDataSources.xcodeproj">
103+
</BuildableReference>
104+
</BuildableProductRunnable>
105+
</ProfileAction>
106+
<AnalyzeAction
107+
buildConfiguration = "Debug">
108+
</AnalyzeAction>
109+
<ArchiveAction
110+
buildConfiguration = "Release"
111+
revealArchiveInOrganizer = "YES">
112+
</ArchiveAction>
113+
</Scheme>

0 commit comments

Comments
 (0)