Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
onmyway133 committed Jun 19, 2017
0 parents commit 0de1d4d
Show file tree
Hide file tree
Showing 41 changed files with 1,963 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/
4 changes: 4 additions & 0 deletions .slather.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ci_service: travis_ci
coverage_service: coveralls
xcodeproj: Cheers.xcodeproj
source_directory: Sources
1 change: 1 addition & 0 deletions .swift-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
osx_image: xcode8
language: objective-c

notifications:
email: false

cache:
directories:
- Carthage

before_install:
- brew update
- if brew outdated | grep -qx xctool; then brew upgrade xctool; fi
- if brew outdated | grep -qx carthage; then brew upgrade carthage; fi
- travis_wait 35; bin/bootstrap-if-needed

script:
- xcodebuild clean build -project Cheers.xcodeproj -scheme Cheers-iOS -sdk iphonesimulator
- xcodebuild test -project Cheers.xcodeproj -scheme Cheers-iOS -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=10.0'
- xcodebuild clean build -project Cheers.xcodeproj -scheme Cheers-Mac -sdk macosx
- xcodebuild test -project Cheers.xcodeproj -scheme Cheers-Mac -sdk macosx
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 **Cheers**. Be sure to check our [documentation](http://cocoadocs.org/docsets/Cheers), [FAQ](https://github.com/hyperoslo/Cheers/wiki/FAQ) and [past issues](https://github.com/hyperoslo/Cheers/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.
28 changes: 28 additions & 0 deletions Cheers.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Pod::Spec.new do |s|
s.name = "Cheers"
s.summary = "A short description of Cheers."
s.version = "0.1.0"
s.homepage = "https://github.com/hyperoslo/Cheers"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "[email protected]" }
s.source = {
:git => "https://github.com/hyperoslo/Cheers.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/hyperoslo'

s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.2'

s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Mac,Shared}/**/*'

# s.ios.frameworks = 'UIKit', 'Foundation'
# s.osx.frameworks = 'Cocoa', 'Foundation'

# s.dependency 'Whisper', '~> 1.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end
Loading

0 comments on commit 0de1d4d

Please sign in to comment.