Skip to content

Commit 112468e

Browse files
KUNXcoder1011
authored andcommitted
Initial commit
1 parent 46a9293 commit 112468e

File tree

21 files changed

+1142
-0
lines changed

21 files changed

+1142
-0
lines changed

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<<<<<<< HEAD
12
# Xcode
23
#
34
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
@@ -13,6 +14,13 @@ xcuserdata/
1314
build/
1415
DerivedData/
1516
*.moved-aside
17+
=======
18+
# macOS
19+
.DS_Store
20+
21+
# Xcode
22+
build/
23+
>>>>>>> 938d2e6 (Initial commit)
1624
*.pbxuser
1725
!default.pbxuser
1826
*.mode1v3
@@ -21,6 +29,7 @@ DerivedData/
2129
!default.mode2v3
2230
*.perspectivev3
2331
!default.perspectivev3
32+
<<<<<<< HEAD
2433

2534
## Obj-C/Swift specific
2635
*.hmap
@@ -88,3 +97,28 @@ fastlane/test_output
8897
# https://github.com/johnno1962/injectionforxcode
8998

9099
iOSInjectionProject/
100+
=======
101+
xcuserdata/
102+
*.xccheckout
103+
*.moved-aside
104+
DerivedData
105+
*.hmap
106+
*.ipa
107+
108+
# Bundler
109+
.bundle
110+
111+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
112+
# Carthage/Checkouts
113+
114+
Carthage/Build
115+
116+
# We recommend against adding the Pods directory to your .gitignore. However
117+
# you should judge for yourself, the pros and cons are mentioned at:
118+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
119+
#
120+
# Note: if you ignore the Pods directory, make sure to uncomment
121+
# `pod install` in .travis.yml
122+
#
123+
# Pods/
124+
>>>>>>> 938d2e6 (Initial commit)

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# references:
2+
# * https://www.objc.io/issues/6-build-tools/travis-ci/
3+
# * https://github.com/supermarin/xcpretty#usage
4+
5+
osx_image: xcode7.3
6+
language: objective-c
7+
# cache: cocoapods
8+
# podfile: Example/Podfile
9+
# before_install:
10+
# - gem install cocoapods # Since Travis is not always on latest version
11+
# - pod install --project-directory=Example
12+
script:
13+
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/SKApmTools.xcworkspace -scheme SKApmTools-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14+
- pod lib lint

Example/Podfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
use_frameworks!
2+
3+
platform :ios, '10.0'
4+
5+
target 'SKApmTools_Example' do
6+
pod 'SKApmTools', :path => '../'
7+
8+
target 'SKApmTools_Tests' do
9+
inherit! :search_paths
10+
11+
12+
end
13+
end

0 commit comments

Comments
 (0)