Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
albertodebortoli committed Oct 14, 2017
0 parents commit 203d550
Show file tree
Hide file tree
Showing 21 changed files with 1,152 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
@@ -0,0 +1,30 @@
# Xcode
.DS_Store
*.xcscmblueprint
*.xcbkptlist
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
profile
*.moved-aside
DerivedData
.idea/
*.irb-history
*.xccheckout
*.orig
*.gcno
*.gcda
Pods/
Failed_Screenshots/
upload_dsym_results
fastlane/report.xml
fastlane/output/
fastlane/metadata/
fastlane/screenshots/
14 changes: 14 additions & 0 deletions .travis.yml
@@ -0,0 +1,14 @@
# references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
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
script:
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/Promis.xcworkspace -scheme Promis-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
11 changes: 11 additions & 0 deletions Example/Podfile
@@ -0,0 +1,11 @@
use_frameworks!

target 'Promis_Example' do
pod 'Promis', :path => '../'

target 'Promis_Tests' do
inherit! :search_paths


end
end

0 comments on commit 203d550

Please sign in to comment.