Skip to content

Commit 3c997e3

Browse files
committed
initial travis-ci setup
1 parent b619344 commit 3c997e3

File tree

3 files changed

+123
-0
lines changed

3 files changed

+123
-0
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
osx_image: xcode7.3
2+
language: objective-c
3+
xcode_workspace: FirebaseUI.xcworkspace
4+
5+
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 = "0730"
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 = "D8C579A51B57349000899F86"
18+
BuildableName = "libFirebaseUI.a"
19+
BlueprintName = "FirebaseUI"
20+
ReferencedContainer = "container:FirebaseUI.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
<BuildActionEntry
24+
buildForTesting = "YES"
25+
buildForRunning = "YES"
26+
buildForProfiling = "YES"
27+
buildForArchiving = "YES"
28+
buildForAnalyzing = "YES">
29+
<BuildableReference
30+
BuildableIdentifier = "primary"
31+
BlueprintIdentifier = "D1D4C942B8C7C723B2CA4911F7678B4B"
32+
BuildableName = "libPods-FirebaseUI.a"
33+
BlueprintName = "Pods-FirebaseUI"
34+
ReferencedContainer = "container:Pods/Pods.xcodeproj">
35+
</BuildableReference>
36+
</BuildActionEntry>
37+
</BuildActionEntries>
38+
</BuildAction>
39+
<TestAction
40+
buildConfiguration = "Debug"
41+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
42+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
43+
shouldUseLaunchSchemeArgsEnv = "YES">
44+
<Testables>
45+
<TestableReference
46+
skipped = "NO">
47+
<BuildableReference
48+
BuildableIdentifier = "primary"
49+
BlueprintIdentifier = "8D2CB5DC1D53F5AE0097FEEB"
50+
BuildableName = "FirebaseUITests.xctest"
51+
BlueprintName = "FirebaseUITests"
52+
ReferencedContainer = "container:FirebaseUI.xcodeproj">
53+
</BuildableReference>
54+
</TestableReference>
55+
</Testables>
56+
<MacroExpansion>
57+
<BuildableReference
58+
BuildableIdentifier = "primary"
59+
BlueprintIdentifier = "D8C579A51B57349000899F86"
60+
BuildableName = "libFirebaseUI.a"
61+
BlueprintName = "FirebaseUI"
62+
ReferencedContainer = "container:FirebaseUI.xcodeproj">
63+
</BuildableReference>
64+
</MacroExpansion>
65+
<AdditionalOptions>
66+
</AdditionalOptions>
67+
</TestAction>
68+
<LaunchAction
69+
buildConfiguration = "Debug"
70+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
71+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
72+
launchStyle = "0"
73+
useCustomWorkingDirectory = "NO"
74+
ignoresPersistentStateOnLaunch = "NO"
75+
debugDocumentVersioning = "YES"
76+
debugServiceExtension = "internal"
77+
allowLocationSimulation = "YES">
78+
<MacroExpansion>
79+
<BuildableReference
80+
BuildableIdentifier = "primary"
81+
BlueprintIdentifier = "D8C579A51B57349000899F86"
82+
BuildableName = "libFirebaseUI.a"
83+
BlueprintName = "FirebaseUI"
84+
ReferencedContainer = "container:FirebaseUI.xcodeproj">
85+
</BuildableReference>
86+
</MacroExpansion>
87+
<AdditionalOptions>
88+
</AdditionalOptions>
89+
</LaunchAction>
90+
<ProfileAction
91+
buildConfiguration = "Release"
92+
shouldUseLaunchSchemeArgsEnv = "YES"
93+
savedToolIdentifier = ""
94+
useCustomWorkingDirectory = "NO"
95+
debugDocumentVersioning = "YES">
96+
<MacroExpansion>
97+
<BuildableReference
98+
BuildableIdentifier = "primary"
99+
BlueprintIdentifier = "D8C579A51B57349000899F86"
100+
BuildableName = "libFirebaseUI.a"
101+
BlueprintName = "FirebaseUI"
102+
ReferencedContainer = "container:FirebaseUI.xcodeproj">
103+
</BuildableReference>
104+
</MacroExpansion>
105+
</ProfileAction>
106+
<AnalyzeAction
107+
buildConfiguration = "Debug">
108+
</AnalyzeAction>
109+
<ArchiveAction
110+
buildConfiguration = "Release"
111+
revealArchiveInOrganizer = "YES">
112+
</ArchiveAction>
113+
</Scheme>

FirebaseUI/Database/Implementation/FirebaseTableViewDataSource.m

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222

2323
@import FirebaseDatabase;
2424

25+
@interface FirebaseTableViewDataSource ()
26+
@property(strong, nonatomic) void (^populateCell)
27+
(__kindof UITableViewCell *cell,__kindof NSObject *object);
28+
@end
29+
2530
@implementation FirebaseTableViewDataSource
2631

2732
#pragma mark - FirebaseDataSource initializer methods

0 commit comments

Comments
 (0)