Skip to content

Commit 2744fed

Browse files
committed
Initial commit
0 parents  commit 2744fed

40 files changed

+1949
-0
lines changed

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# OS X
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
Icon
6+
._*
7+
.Spotlight-V100
8+
.Trashes
9+
10+
# Xcode
11+
#
12+
build/
13+
*.pbxuser
14+
!default.pbxuser
15+
*.mode1v3
16+
!default.mode1v3
17+
*.mode2v3
18+
!default.mode2v3
19+
*.perspectivev3
20+
!default.perspectivev3
21+
xcuserdata
22+
*.xccheckout
23+
*.moved-aside
24+
DerivedData
25+
*.hmap
26+
*.ipa
27+
*.xcuserstate
28+
29+
# CocoaPods
30+
Pods
31+
32+
# Carthage
33+
Carthage
34+
35+
# SPM
36+
.build/

.slather.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ci_service: travis_ci
2+
coverage_service: coveralls
3+
xcodeproj: When.xcodeproj
4+
source_directory: Sources

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
osx_image: xcode7.2
2+
language: objective-c
3+
4+
before_install:
5+
- brew update
6+
- brew install carthage
7+
- if brew outdated | grep -qx xctool; then brew upgrade xctool; fi
8+
- carthage update --platform iOS,Mac
9+
10+
script:
11+
- xctool clean build -project When.xcodeproj -scheme When-iOS -sdk iphonesimulator
12+
- xctool test -project When.xcodeproj -scheme When-iOS -sdk iphonesimulator
13+
- xctool clean build -project When.xcodeproj -scheme When-Mac -sdk macosx
14+
- xctool test -project When.xcodeproj -scheme When-Mac -sdk macosx

CONTRIBUTING.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
GitHub Issues is for reporting bugs, discussing features and general feedback in **When**. Be sure to check our [documentation](http://cocoadocs.org/docsets/When), [FAQ](https://github.com/vadymmarkov/When/wiki/FAQ) and [past issues](https://github.com/vadymmarkov/When/issues?state=closed) before opening any new issues.
2+
3+
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.

Cartfile.private

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github "Quick/Nimble"
2+
github "Quick/Quick"

Cartfile.resolved

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github "Quick/Nimble" "v3.1.0"
2+
github "Quick/Quick" "v0.9.0"

Example/WhenDemo/Podfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
use_frameworks!
2+
3+
platform :ios, '8.0'
4+
5+
pod 'When', path: '../../'

Example/WhenDemo/Podfile.lock

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PODS:
2+
- When (0.1.0)
3+
4+
DEPENDENCIES:
5+
- When (from `../../`)
6+
7+
EXTERNAL SOURCES:
8+
When:
9+
:path: ../../
10+
11+
SPEC CHECKSUMS:
12+
When: e724bef08b93fecb2936377a27c506557c6844e5
13+
14+
COCOAPODS: 0.39.0

0 commit comments

Comments
 (0)