Skip to content

Commit f9eab39

Browse files
author
Mike Roberts
committed
Initial Commit
0 parents  commit f9eab39

File tree

10 files changed

+580
-0
lines changed

10 files changed

+580
-0
lines changed

objc-promise.xcodeproj/project.pbxproj

Lines changed: 446 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/* Localized versions of Info.plist keys */
2+

objc-promise/objc-promise-Info.plist

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleExecutable</key>
8+
<string>${EXECUTABLE_NAME}</string>
9+
<key>CFBundleIconFile</key>
10+
<string></string>
11+
<key>CFBundleIdentifier</key>
12+
<string>com.mproberts.${PRODUCT_NAME:rfc1034identifier}</string>
13+
<key>CFBundleInfoDictionaryVersion</key>
14+
<string>6.0</string>
15+
<key>CFBundleName</key>
16+
<string>${PRODUCT_NAME}</string>
17+
<key>CFBundlePackageType</key>
18+
<string>FMWK</string>
19+
<key>CFBundleShortVersionString</key>
20+
<string>1.0</string>
21+
<key>CFBundleSignature</key>
22+
<string>????</string>
23+
<key>CFBundleVersion</key>
24+
<string>1</string>
25+
<key>NSHumanReadableCopyright</key>
26+
<string>Copyright © 2012 Mike Roberts. All rights reserved.</string>
27+
<key>NSPrincipalClass</key>
28+
<string></string>
29+
</dict>
30+
</plist>

objc-promise/objc-promise-Prefix.pch

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
//
2+
// Prefix header for all source files of the 'objc-promise' target in the 'objc-promise' project
3+
//
4+
5+
#ifdef __OBJC__
6+
#import <Cocoa/Cocoa.h>
7+
#endif

objc-promise/objc_promise.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// objc_promise.h
3+
// objc-promise
4+
//
5+
// Created by Michael Roberts on 2012-10-12.
6+
// Copyright (c) 2012 Mike Roberts. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
@interface objc_promise : NSObject
12+
13+
@end

objc-promise/objc_promise.m

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// objc_promise.m
3+
// objc-promise
4+
//
5+
// Created by Michael Roberts on 2012-10-12.
6+
// Copyright (c) 2012 Mike Roberts. All rights reserved.
7+
//
8+
9+
#import "objc_promise.h"
10+
11+
@implementation objc_promise
12+
13+
@end
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/* Localized versions of Info.plist keys */
2+
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>${EXECUTABLE_NAME}</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>com.mproberts.${PRODUCT_NAME:rfc1034identifier}</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundlePackageType</key>
14+
<string>BNDL</string>
15+
<key>CFBundleShortVersionString</key>
16+
<string>1.0</string>
17+
<key>CFBundleSignature</key>
18+
<string>????</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
</dict>
22+
</plist>

objc-promiseTests/objc_promiseTests.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// objc_promiseTests.h
3+
// objc-promiseTests
4+
//
5+
// Created by Michael Roberts on 2012-10-12.
6+
// Copyright (c) 2012 Mike Roberts. All rights reserved.
7+
//
8+
9+
#import <SenTestingKit/SenTestingKit.h>
10+
11+
@interface objc_promiseTests : SenTestCase
12+
13+
@end

objc-promiseTests/objc_promiseTests.m

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
//
2+
// objc_promiseTests.m
3+
// objc-promiseTests
4+
//
5+
// Created by Michael Roberts on 2012-10-12.
6+
// Copyright (c) 2012 Mike Roberts. All rights reserved.
7+
//
8+
9+
#import "objc_promiseTests.h"
10+
11+
@implementation objc_promiseTests
12+
13+
- (void)setUp
14+
{
15+
[super setUp];
16+
17+
// Set-up code here.
18+
}
19+
20+
- (void)tearDown
21+
{
22+
// Tear-down code here.
23+
24+
[super tearDown];
25+
}
26+
27+
- (void)testExample
28+
{
29+
STFail(@"Unit tests are not implemented yet in objc-promiseTests");
30+
}
31+
32+
@end

0 commit comments

Comments
 (0)