-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0de1d4d
Showing
41 changed files
with
1,963 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.