Skip to content

Commit 5adb826

Browse files
committed
Adding base structure for library with test
1 parent c9fd3b3 commit 5adb826

File tree

96 files changed

+270342
-8
lines changed

Some content is hidden

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

96 files changed

+270342
-8
lines changed

.DS_Store

8 KB
Binary file not shown.

.gitignore

+30
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,33 @@ fastlane/test_output
6161
# https://github.com/johnno1962/injectionforxcode
6262

6363
iOSInjectionProject/
64+
65+
# C++
66+
67+
# Prerequisites
68+
*.d
69+
70+
# Compiled Object files
71+
*.slo
72+
*.lo
73+
*.o
74+
*.obj
75+
76+
# Precompiled Headers
77+
*.gch
78+
*.pch
79+
80+
# Compiled Dynamic libraries
81+
*.so
82+
*.dylib
83+
*.dll
84+
85+
# Fortran module files
86+
*.mod
87+
*.smod
88+
89+
# Compiled Static libraries
90+
*.lai
91+
*.la
92+
*.a
93+
*.lib

.travis.yml

+14
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/simdjson-cocoa.xcworkspace -scheme simdjson-cocoa-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14+
- pod lib lint

Example/.DS_Store

6 KB
Binary file not shown.

Example/Podfile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
use_frameworks!
2+
3+
platform :ios, '8.0'
4+
5+
target 'simdjson-cocoa_Example' do
6+
pod 'simdjson-cocoa', :path => '../'
7+
8+
target 'simdjson-cocoa_Tests' do
9+
inherit! :search_paths
10+
11+
12+
end
13+
end

Example/Podfile.lock

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
PODS:
2+
- simdjson-cocoa (0.1.0)
3+
4+
DEPENDENCIES:
5+
- simdjson-cocoa (from `../`)
6+
7+
EXTERNAL SOURCES:
8+
simdjson-cocoa:
9+
:path: "../"
10+
11+
SPEC CHECKSUMS:
12+
simdjson-cocoa: e8441f325042a0b31f30260bc5667fca3e022334
13+
14+
PODFILE CHECKSUM: 4cf725b1d5a6e75d2c92c244f2b49e968763d23e
15+
16+
COCOAPODS: 1.6.1

Example/Pods/Local Podspecs/simdjson-cocoa.podspec.json

+22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

+789
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-simdjson-cocoa_Example/Pods-simdjson-cocoa_Example-Info.plist

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-simdjson-cocoa_Example/Pods-simdjson-cocoa_Example-acknowledgements.markdown

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-simdjson-cocoa_Example/Pods-simdjson-cocoa_Example-acknowledgements.plist

+58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-simdjson-cocoa_Example/Pods-simdjson-cocoa_Example-dummy.m

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)