Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .slather.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
coverage_service: coveralls
xcodeproj: DeepLinkSDK.xcodeproj
source_directory: DeepLinkSDK
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ language: objective-c
branches:
only:
master
before_install: pod install
before_install:
- gem install activesupport -N
- gem install slather --no-rdoc --no-ri --no-document --quiet
- gem i cocoapods --no-ri --no-rdoc
- pod install
script:
- xctool test -workspace DeepLinkSDK.xcworkspace -scheme ReceiverDemo -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace DeepLinkSDK.xcworkspace -scheme ReceiverDemo -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
after_success:
- slather
4,308 changes: 3,127 additions & 1,181 deletions DeepLinkSDK.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source 'https://rubygems.org'

gem 'xcpretty'
gem 'slather'
gem 'synx'
8 changes: 8 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@ GEM
colorize (0.7.3)
i18n (0.6.11)
json (1.8.1)
mini_portile (0.6.2)
minitest (5.4.3)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
slather (1.5.5)
clamp (~> 0.6)
nokogiri (~> 1.6.3)
xcodeproj (~> 0.20.0)
synx (0.0.54)
clamp (~> 0.6)
colorize (~> 0.7)
Expand All @@ -29,5 +36,6 @@ PLATFORMS
ruby

DEPENDENCIES
slather
synx
xcpretty
2 changes: 2 additions & 0 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
xcodeproj 'DeepLinkSDK.xcodeproj', 'Test' => :debug
plugin 'slather'


target 'SenderDemo', :exclusive => true do
pod 'DeepLinkSDK', :path => '.'
Expand Down
12 changes: 6 additions & 6 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ DEPENDENCIES:

EXTERNAL SOURCES:
DeepLinkSDK:
:path: .
:path: "."

SPEC CHECKSUMS:
DeepLinkSDK: 1555eb863dd8d5aaa564cceac37fcd0859fbc26a
Expecta: ee641011fe10aa1855d487b40e4976dac50ec342
OCMock: ecdd510b73ef397f2f97274785c1e87fd147c49f
Specta: 698a58ffa5ec948327d3b92eab50ca58d7f4fbe8
DeepLinkSDK: 82f36ed1bbf8fb549bb0dfb14b21852219c95384
Expecta: 8c507baf13211207b1e9d0a741480600e6b4ed15
OCMock: a10ea9f0a6e921651f96f78b6faee95ebc813b92
Specta: e5ad38f1b2227a23bc63d0b5a3b41c5e628f2851

COCOAPODS: 0.35.0
COCOAPODS: 0.36.4
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<p align="center">
<a href="https://travis-ci.org/usebutton/ios-deeplink-sdk"><img src="http://img.shields.io/travis/usebutton/ios-deeplink-sdk.svg?style=flat" alt="CI Status" /></a>
<a href='https://coveralls.io/r/usebutton/ios-deeplink-sdk'><img src='https://coveralls.io/repos/usebutton/ios-deeplink-sdk/badge.svg' alt='Coverage Status' /></a>
<a href="http://cocoadocs.org/docsets/DeepLinkSDK"><img src="https://img.shields.io/cocoapods/v/DeepLinkSDK.svg?style=flat" alt="Version" /></a>
<a href="http://cocoadocs.org/docsets/DeepLinkSDK"><img src="https://img.shields.io/cocoapods/l/DeepLinkSDK.svg?style=flat" alt="License" /></a>
<a href="http://cocoadocs.org/docsets/DeepLinkSDK"><img src="https://img.shields.io/cocoapods/p/DeepLinkSDK.svg?style=flat" alt="Platform" /></a>
Expand Down