Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
idokleinman committed Mar 23, 2015
1 parent de0ee37 commit 1f3a17f
Show file tree
Hide file tree
Showing 26 changed files with 1,703 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace Example/Spark-Setup.xcworkspace -scheme Spark-Setup-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c
- pod lib lint --quick
11 changes: 11 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source 'https://github.com/CocoaPods/Specs.git'

target 'Spark-Setup', :exclusive => true do
pod "Spark-Setup", :path => "../"
end

target 'Tests', :exclusive => true do
pod "Spark-Setup", :path => "../"


end
Loading

0 comments on commit 1f3a17f

Please sign in to comment.