Skip to content
This repository has been archived by the owner on May 19, 2018. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed Nov 26, 2011
0 parents commit b8eaaf9
Show file tree
Hide file tree
Showing 8 changed files with 518 additions and 0 deletions.
406 changes: 406 additions & 0 deletions RXFutures.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions RXFutures/RXFutures-Prefix.pch
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'RXFutures' target in the 'RXFutures' project
//

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
13 changes: 13 additions & 0 deletions RXFutures/RXFutures.h
@@ -0,0 +1,13 @@
//
// RXFutures.h
// RXFutures
//
// Created by Rob Rix on 11-11-26.
// Copyright (c) 2011 Monochrome Industries. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface RXFutures : NSObject

@end
23 changes: 23 additions & 0 deletions RXFutures/RXFutures.m
@@ -0,0 +1,23 @@
//
// RXFutures.m
// RXFutures
//
// Created by Rob Rix on 11-11-26.
// Copyright (c) 2011 Monochrome Industries. All rights reserved.
//

#import "RXFutures.h"

@implementation RXFutures

- (id)init
{
self = [super init];
if (self) {
// Initialization code here.
}

return self;
}

@end
22 changes: 22 additions & 0 deletions RXFuturesTests/RXFuturesTests-Info.plist
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.monochromeindustries.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
13 changes: 13 additions & 0 deletions RXFuturesTests/RXFuturesTests.h
@@ -0,0 +1,13 @@
//
// RXFuturesTests.h
// RXFuturesTests
//
// Created by Rob Rix on 11-11-26.
// Copyright (c) 2011 Monochrome Industries. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface RXFuturesTests : SenTestCase

@end
32 changes: 32 additions & 0 deletions RXFuturesTests/RXFuturesTests.m
@@ -0,0 +1,32 @@
//
// RXFuturesTests.m
// RXFuturesTests
//
// Created by Rob Rix on 11-11-26.
// Copyright (c) 2011 Monochrome Industries. All rights reserved.
//

#import "RXFuturesTests.h"

@implementation RXFuturesTests

- (void)setUp
{
[super setUp];

// Set-up code here.
}

- (void)tearDown
{
// Tear-down code here.

[super tearDown];
}

- (void)testExample
{
STFail(@"Unit tests are not implemented yet in RXFuturesTests");
}

@end
2 changes: 2 additions & 0 deletions RXFuturesTests/en.lproj/InfoPlist.strings
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

0 comments on commit b8eaaf9

Please sign in to comment.