File tree Expand file tree Collapse file tree 10 files changed +580
-0
lines changed Expand file tree Collapse file tree 10 files changed +580
-0
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ /* Localized versions of Info.plist keys */
2
+
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ /* Localized versions of Info.plist keys */
2
+
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments