Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zenangst committed May 25, 2018
0 parents commit 6abbae3
Show file tree
Hide file tree
Showing 65 changed files with 3,255 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# OS X
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# CocoaPods
Pods

# Carthage
Carthage

# SPM
.build/
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4.0
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
osx_image: xcode9.3beta
language: objective-c

script:
- set -o pipefail && xcodebuild -project Vaccine.xcodeproj -scheme "Vaccine-macOS" -sdk macosx clean build
- set -o pipefail && xcodebuild -project Vaccine.xcodeproj -scheme "Vaccine-macOS" -sdk macosx -enableCodeCoverage YES test
- set -o pipefail && xcodebuild -project Vaccine.xcodeproj -scheme "Vaccine-iOS" -sdk iphonesimulator -destination name="iPhone 8" clean build
- set -o pipefail && xcodebuild -project Vaccine.xcodeproj -scheme "Vaccine-iOS" -sdk iphonesimulator -destination name="iPhone 8" -enableCodeCoverage YES test
- set -o pipefail && xcodebuild -project Vaccine.xcodeproj -scheme "Vaccine-tvOS" -destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=11.0' clean build
- set -o pipefail && xcodebuild -project Vaccine.xcodeproj -scheme "Vaccine-tvOS" -destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=11.0' -enableCodeCoverage YES test

after_success:
- bash <(curl -s https://codecov.io/bash)

notifications:
email: false
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
GitHub Issues is for reporting bugs, discussing features and general feedback in **Vaccine**. Be sure to check our [documentation](http://cocoadocs.org/docsets/Vaccine), [FAQ](https://github.com/zenangst/Vaccine/wiki/FAQ) and [past issues](https://github.com/zenangst/Vaccine/issues?state=closed) before opening any new issues.

If you are posting about a crash in your application, a stack trace is helpful, but additional context, in the form of code and explanation, is necessary to be of any use.
1 change: 1 addition & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#example-cartfile
8 changes: 8 additions & 0 deletions Example/VaccineDemo/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
use_frameworks!

platform :ios, '9.0'

target 'VaccineDemo' do
pod 'Vaccine', path: '../../'
end

16 changes: 16 additions & 0 deletions Example/VaccineDemo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- Vaccine (0.1.0)

DEPENDENCIES:
- Vaccine (from `../../`)

EXTERNAL SOURCES:
Vaccine:
:path: "../../"

SPEC CHECKSUMS:
Vaccine: be32e155c9180fe663beed1b5c95825fb4d6f132

PODFILE CHECKSUM: ccfaad8b2956e673132268cb7acf21caae3d87a2

COCOAPODS: 1.5.2
Loading

0 comments on commit 6abbae3

Please sign in to comment.