Skip to content

Commit a054d1d

Browse files
committed
First commit.
1 parent 99c0c1b commit a054d1d

File tree

54 files changed

+3017
-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.

54 files changed

+3017
-8
lines changed

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

Example/Podfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
use_frameworks!
2+
3+
target 'SMLinkPreview_Example' do
4+
pod 'SMLinkPreview', :path => '../'
5+
6+
target 'SMLinkPreview_Tests' do
7+
inherit! :search_paths
8+
9+
10+
end
11+
end

Example/Podfile.lock

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

Example/Pods/Local Podspecs/SMLinkPreview.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

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

Example/Pods/Target Support Files/Pods-SMLinkPreview_Example/Pods-SMLinkPreview_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-SMLinkPreview_Example/Pods-SMLinkPreview_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-SMLinkPreview_Example/Pods-SMLinkPreview_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-SMLinkPreview_Example/Pods-SMLinkPreview_Example-dummy.m

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

Example/Pods/Target Support Files/Pods-SMLinkPreview_Example/Pods-SMLinkPreview_Example-frameworks.sh

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

Example/Pods/Target Support Files/Pods-SMLinkPreview_Example/Pods-SMLinkPreview_Example-umbrella.h

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

Example/Pods/Target Support Files/Pods-SMLinkPreview_Example/Pods-SMLinkPreview_Example.debug.xcconfig

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

0 commit comments

Comments
 (0)