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

Commit 6c126f2

Browse files
authored
Feature/add pod sources (#19)
* Add Pods/ except for SwiftLint * Remove `pod install` from README * Change SwiftLint build phase to always rely on pod's binary * Fix removing Pods/ from codecov * Remove unneeded `pod repo update` on Travis * Change default codecov target to 75
1 parent 7dafde2 commit 6c126f2

File tree

169 files changed

+58707
-6
lines changed

Some content is hidden

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

169 files changed

+58707
-6
lines changed

.codecov.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@ coverage:
44
status:
55
patch: false
66
changes: false
7+
project:
8+
default:
9+
target: 75
710
comment: false
811

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ playground.xcworkspace
4444
# you should judge for yourself, the pros and cons are mentioned at:
4545
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
4646
#
47-
Pods/
47+
# Pods/
48+
Pods/SwiftLint/
4849

4950
# Carthage
5051
#

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
language: objective-c
22
osx_image: xcode8.2
3-
before_install:
4-
- pod repo update
53
script:
64
- xcodebuild -scheme IBAnalyzer -workspace IBAnalyzer.xcworkspace
75
- xcodebuild test -scheme IBAnalyzer -workspace IBAnalyzer.xcworkspace
86
after_success:
9-
- bash <(curl -s https://codecov.io/bash)
7+
- bash <(curl -s https://codecov.io/bash) -J 'IBAnalyzer'
108

IBAnalyzer.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@
366366
);
367367
runOnlyForDeploymentPostprocessing = 0;
368368
shellPath = /bin/sh;
369-
shellScript = "if which swiftlint >/dev/null; then\ncd IBAnalyzer && ${PODS_ROOT}/SwiftLint/swiftlint && cd ../IBAnalyzerTests && swiftlint && cd ..\nelse\necho \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
369+
shellScript = "if which ${PODS_ROOT}/SwiftLint/swiftlint >/dev/null; then\ncd IBAnalyzer && ${PODS_ROOT}/SwiftLint/swiftlint && cd ../IBAnalyzerTests && ${PODS_ROOT}/SwiftLint/swiftlint && cd ..\nelse\necho \"warning: SwiftLint not installed, run 'pod install'\"\nfi\n";
370370
};
371371
A6EDA62C1E3D4B9C00DBD41F /* Copy Built Product to Local Folder */ = {
372372
isa = PBXShellScriptBuildPhase;

Pods/Manifest.lock

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

Pods/Manifest.lock-e

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

Pods/Pods.xcodeproj/project.pbxproj

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

Pods/Pods.xcodeproj/project.pbxproj-e

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

Pods/SWXMLHash/LICENSE

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

Pods/SWXMLHash/LICENSE-e

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

0 commit comments

Comments
 (0)