Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 7bf5c5e

Browse files
committed
Merge pull request #1 from ParsePlatform/nlutsenko.travis
Update pod repo on every Travis-CI run.
2 parents 7cdf394 + e97096b commit 7bf5c5e

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.travis.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ env:
1414
- TEST_TYPE=CocoaPods
1515
install:
1616
- |
17-
if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = OSX ] || [ "$TEST_TYPE" = OSXDemo ]; then
18-
bundle install
19-
bundle exec pod install
20-
fi
17+
bundle install
18+
bundle exec pod repo update
19+
bundle exec pod install
2120
script:
2221
- |
2322
if [ "$TEST_TYPE" = iOS ]; then

Examples/LiveQueryDemo.xcodeproj/xcshareddata/xcschemes/LiveQueryDemo.xcscheme

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,23 @@
33
LastUpgradeVersion = "0720"
44
version = "1.3">
55
<BuildAction
6-
parallelizeBuildables = "YES"
6+
parallelizeBuildables = "NO"
77
buildImplicitDependencies = "YES">
88
<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 = "F5903CE91BD999C500C3EFFE"
18+
BuildableName = "ParseLiveQuery.framework"
19+
BlueprintName = "ParseLiveQuery-OSX"
20+
ReferencedContainer = "container:../Sources/ParseLiveQuery.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
923
<BuildActionEntry
1024
buildForTesting = "YES"
1125
buildForRunning = "YES"

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
[![License][license-svg]][license-link]
77

88
[![Build Status][build-status-svg]][build-status-link]
9-
[![Coverage Status][coverage-status-svg]][coverage-status-link]
109

1110
`PFQuery` is one of the key concepts for Parse. It allows you to retrieve `PFObject`s by specifying some conditions, making it easy to build apps such as a dashboard, a todo list or even some strategy games. However, `PFQuery` is based on a pull model, which is not suitable for apps that need real-time support.
1211

0 commit comments

Comments
 (0)