Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kishikawakatsumi committed May 11, 2017
0 parents commit 613e2c8
Show file tree
Hide file tree
Showing 100 changed files with 9,690 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xcuserstate

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

## Swift Package Manager
.DS_Store
/.build
/Packages

## CocoaPods
Pods/

## Carthage
Carthage/Checkouts
Carthage/Build

## Bundler
.bundle
vendor
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: objective-c
osx_image: xcode8
cache:
directories:
- Lib/vendor/bundle
before_install:
- brew update
- brew outdated carthage || brew upgrade carthage
install:
- "(cd Lib && bundle install --path=vendor/bundle --binstubs=vendor/bin)"
script:
- "bundle exec rake test:iphonesimulator coverage:coveralls"
branches:
only:
- master
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
Loading

0 comments on commit 613e2c8

Please sign in to comment.