From e87490e152abce5f41adfa70e8a3b15e75d7f308 Mon Sep 17 00:00:00 2001 From: Uri Baghin Date: Mon, 14 Jan 2013 18:38:25 +0100 Subject: [PATCH] Initial commit. --- .gitignore | 14 + README.md | 4 + ReactiveCocoaIO.xcodeproj/project.pbxproj | 418 ++++++++++++++++++ ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch | 7 + ReactiveCocoaIO/ReactiveCocoaIO.h | 13 + ReactiveCocoaIO/ReactiveCocoaIO.m | 13 + .../ReactiveCocoaIOTests-Info.plist | 22 + ReactiveCocoaIOTests/ReactiveCocoaIOTests.h | 13 + ReactiveCocoaIOTests/ReactiveCocoaIOTests.m | 32 ++ .../en.lproj/InfoPlist.strings | 2 + 10 files changed, 538 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 ReactiveCocoaIO.xcodeproj/project.pbxproj create mode 100644 ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch create mode 100644 ReactiveCocoaIO/ReactiveCocoaIO.h create mode 100644 ReactiveCocoaIO/ReactiveCocoaIO.m create mode 100644 ReactiveCocoaIOTests/ReactiveCocoaIOTests-Info.plist create mode 100644 ReactiveCocoaIOTests/ReactiveCocoaIOTests.h create mode 100644 ReactiveCocoaIOTests/ReactiveCocoaIOTests.m create mode 100644 ReactiveCocoaIOTests/en.lproj/InfoPlist.strings diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c59fbf --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +.DS_Store +*.swp +*~.nib + +Build + +*.mode1v3 +*.pbxuser +*.perspective +*.perspectivev3 +project.xcworkspace/ +xcuserdata/ + +instrumentscli*.trace/ \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..1fdbfda --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# ReactiveCocoaIO + +ReactiveCocoaIO is a library for accessing and manipulating a filesystem through +signals, based on [ReactiveCocoa](https://github.com/github/ReactiveCocoa). diff --git a/ReactiveCocoaIO.xcodeproj/project.pbxproj b/ReactiveCocoaIO.xcodeproj/project.pbxproj new file mode 100644 index 0000000..9dfe894 --- /dev/null +++ b/ReactiveCocoaIO.xcodeproj/project.pbxproj @@ -0,0 +1,418 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 5F37CAAF16A4726F00F3020A /* ReactiveCocoaIO.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5F37CAAE16A4726F00F3020A /* ReactiveCocoaIO.h */; }; + 5F37CAB116A4726F00F3020A /* ReactiveCocoaIO.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F37CAB016A4726F00F3020A /* ReactiveCocoaIO.m */; }; + 5F37CABF16A4726F00F3020A /* libReactiveCocoaIO.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F37CAA616A4726F00F3020A /* libReactiveCocoaIO.a */; }; + 5F37CAC516A4726F00F3020A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5F37CAC316A4726F00F3020A /* InfoPlist.strings */; }; + 5F37CAC816A4726F00F3020A /* ReactiveCocoaIOTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F37CAC716A4726F00F3020A /* ReactiveCocoaIOTests.m */; }; + 5F37CAD416A472E100F3020A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F37CAD316A472E000F3020A /* Foundation.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 5F37CABD16A4726F00F3020A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 5F37CA9D16A4726F00F3020A /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5F37CAA516A4726F00F3020A; + remoteInfo = ReactiveCocoaIO; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 5F37CAA416A4726F00F3020A /* CopyFiles */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = "include/${PRODUCT_NAME}"; + dstSubfolderSpec = 16; + files = ( + 5F37CAAF16A4726F00F3020A /* ReactiveCocoaIO.h in CopyFiles */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 5F37CAA616A4726F00F3020A /* libReactiveCocoaIO.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReactiveCocoaIO.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5F37CAAD16A4726F00F3020A /* ReactiveCocoaIO-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ReactiveCocoaIO-Prefix.pch"; sourceTree = ""; }; + 5F37CAAE16A4726F00F3020A /* ReactiveCocoaIO.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactiveCocoaIO.h; sourceTree = ""; }; + 5F37CAB016A4726F00F3020A /* ReactiveCocoaIO.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactiveCocoaIO.m; sourceTree = ""; }; + 5F37CAB716A4726F00F3020A /* ReactiveCocoaIOTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactiveCocoaIOTests.octest; sourceTree = BUILT_PRODUCTS_DIR; }; + 5F37CAC216A4726F00F3020A /* ReactiveCocoaIOTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ReactiveCocoaIOTests-Info.plist"; sourceTree = ""; }; + 5F37CAC416A4726F00F3020A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + 5F37CAC616A4726F00F3020A /* ReactiveCocoaIOTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReactiveCocoaIOTests.h; sourceTree = ""; }; + 5F37CAC716A4726F00F3020A /* ReactiveCocoaIOTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactiveCocoaIOTests.m; sourceTree = ""; }; + 5F37CAD316A472E000F3020A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 5F37CAA316A4726F00F3020A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5F37CAD416A472E100F3020A /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5F37CAB316A4726F00F3020A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5F37CABF16A4726F00F3020A /* libReactiveCocoaIO.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 5F37CA9B16A4726F00F3020A = { + isa = PBXGroup; + children = ( + 5F37CAAB16A4726F00F3020A /* ReactiveCocoaIO */, + 5F37CAC016A4726F00F3020A /* ReactiveCocoaIOTests */, + 5F37CAA816A4726F00F3020A /* Frameworks */, + 5F37CAA716A4726F00F3020A /* Products */, + ); + sourceTree = ""; + }; + 5F37CAA716A4726F00F3020A /* Products */ = { + isa = PBXGroup; + children = ( + 5F37CAA616A4726F00F3020A /* libReactiveCocoaIO.a */, + 5F37CAB716A4726F00F3020A /* ReactiveCocoaIOTests.octest */, + ); + name = Products; + sourceTree = ""; + }; + 5F37CAA816A4726F00F3020A /* Frameworks */ = { + isa = PBXGroup; + children = ( + 5F37CAD116A472BB00F3020A /* Apple */, + 5F37CAD216A472C300F3020A /* Third Party */, + ); + name = Frameworks; + sourceTree = ""; + }; + 5F37CAAB16A4726F00F3020A /* ReactiveCocoaIO */ = { + isa = PBXGroup; + children = ( + 5F37CAAE16A4726F00F3020A /* ReactiveCocoaIO.h */, + 5F37CAB016A4726F00F3020A /* ReactiveCocoaIO.m */, + 5F37CAAC16A4726F00F3020A /* Supporting Files */, + ); + path = ReactiveCocoaIO; + sourceTree = ""; + }; + 5F37CAAC16A4726F00F3020A /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 5F37CAAD16A4726F00F3020A /* ReactiveCocoaIO-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 5F37CAC016A4726F00F3020A /* ReactiveCocoaIOTests */ = { + isa = PBXGroup; + children = ( + 5F37CAC616A4726F00F3020A /* ReactiveCocoaIOTests.h */, + 5F37CAC716A4726F00F3020A /* ReactiveCocoaIOTests.m */, + 5F37CAC116A4726F00F3020A /* Supporting Files */, + ); + path = ReactiveCocoaIOTests; + sourceTree = ""; + }; + 5F37CAC116A4726F00F3020A /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 5F37CAC216A4726F00F3020A /* ReactiveCocoaIOTests-Info.plist */, + 5F37CAC316A4726F00F3020A /* InfoPlist.strings */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 5F37CAD116A472BB00F3020A /* Apple */ = { + isa = PBXGroup; + children = ( + 5F37CAD316A472E000F3020A /* Foundation.framework */, + ); + name = Apple; + sourceTree = ""; + }; + 5F37CAD216A472C300F3020A /* Third Party */ = { + isa = PBXGroup; + children = ( + ); + name = "Third Party"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 5F37CAA516A4726F00F3020A /* ReactiveCocoaIO */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5F37CACB16A4726F00F3020A /* Build configuration list for PBXNativeTarget "ReactiveCocoaIO" */; + buildPhases = ( + 5F37CAA216A4726F00F3020A /* Sources */, + 5F37CAA316A4726F00F3020A /* Frameworks */, + 5F37CAA416A4726F00F3020A /* CopyFiles */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ReactiveCocoaIO; + productName = ReactiveCocoaIO; + productReference = 5F37CAA616A4726F00F3020A /* libReactiveCocoaIO.a */; + productType = "com.apple.product-type.library.static"; + }; + 5F37CAB616A4726F00F3020A /* ReactiveCocoaIOTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5F37CACE16A4726F00F3020A /* Build configuration list for PBXNativeTarget "ReactiveCocoaIOTests" */; + buildPhases = ( + 5F37CAB216A4726F00F3020A /* Sources */, + 5F37CAB316A4726F00F3020A /* Frameworks */, + 5F37CAB416A4726F00F3020A /* Resources */, + 5F37CAB516A4726F00F3020A /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 5F37CABE16A4726F00F3020A /* PBXTargetDependency */, + ); + name = ReactiveCocoaIOTests; + productName = ReactiveCocoaIOTests; + productReference = 5F37CAB716A4726F00F3020A /* ReactiveCocoaIOTests.octest */; + productType = "com.apple.product-type.bundle"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 5F37CA9D16A4726F00F3020A /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0450; + ORGANIZATIONNAME = "Enthusiastic Code"; + }; + buildConfigurationList = 5F37CAA016A4726F00F3020A /* Build configuration list for PBXProject "ReactiveCocoaIO" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 5F37CA9B16A4726F00F3020A; + productRefGroup = 5F37CAA716A4726F00F3020A /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 5F37CAA516A4726F00F3020A /* ReactiveCocoaIO */, + 5F37CAB616A4726F00F3020A /* ReactiveCocoaIOTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 5F37CAB416A4726F00F3020A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5F37CAC516A4726F00F3020A /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 5F37CAB516A4726F00F3020A /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 5F37CAA216A4726F00F3020A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5F37CAB116A4726F00F3020A /* ReactiveCocoaIO.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 5F37CAB216A4726F00F3020A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5F37CAC816A4726F00F3020A /* ReactiveCocoaIOTests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 5F37CABE16A4726F00F3020A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 5F37CAA516A4726F00F3020A /* ReactiveCocoaIO */; + targetProxy = 5F37CABD16A4726F00F3020A /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 5F37CAC316A4726F00F3020A /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + 5F37CAC416A4726F00F3020A /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 5F37CAC916A4726F00F3020A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + }; + name = Debug; + }; + 5F37CACA16A4726F00F3020A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 5F37CACC16A4726F00F3020A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + DSTROOT = /tmp/ReactiveCocoaIO.dst; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch"; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 5F37CACD16A4726F00F3020A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + DSTROOT = /tmp/ReactiveCocoaIO.dst; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch"; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 5F37CACF16A4726F00F3020A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "\"$(SDKROOT)/Developer/Library/Frameworks\"", + "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"", + ); + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch"; + INFOPLIST_FILE = "ReactiveCocoaIOTests/ReactiveCocoaIOTests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = octest; + }; + name = Debug; + }; + 5F37CAD016A4726F00F3020A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + FRAMEWORK_SEARCH_PATHS = ( + "\"$(SDKROOT)/Developer/Library/Frameworks\"", + "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"", + ); + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch"; + INFOPLIST_FILE = "ReactiveCocoaIOTests/ReactiveCocoaIOTests-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = octest; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 5F37CAA016A4726F00F3020A /* Build configuration list for PBXProject "ReactiveCocoaIO" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5F37CAC916A4726F00F3020A /* Debug */, + 5F37CACA16A4726F00F3020A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5F37CACB16A4726F00F3020A /* Build configuration list for PBXNativeTarget "ReactiveCocoaIO" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5F37CACC16A4726F00F3020A /* Debug */, + 5F37CACD16A4726F00F3020A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; + 5F37CACE16A4726F00F3020A /* Build configuration list for PBXNativeTarget "ReactiveCocoaIOTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5F37CACF16A4726F00F3020A /* Debug */, + 5F37CAD016A4726F00F3020A /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; +/* End XCConfigurationList section */ + }; + rootObject = 5F37CA9D16A4726F00F3020A /* Project object */; +} diff --git a/ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch b/ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch new file mode 100644 index 0000000..4285c4f --- /dev/null +++ b/ReactiveCocoaIO/ReactiveCocoaIO-Prefix.pch @@ -0,0 +1,7 @@ +// +// Prefix header for all source files of the 'ReactiveCocoaIO' target in the 'ReactiveCocoaIO' project +// + +#ifdef __OBJC__ + #import +#endif diff --git a/ReactiveCocoaIO/ReactiveCocoaIO.h b/ReactiveCocoaIO/ReactiveCocoaIO.h new file mode 100644 index 0000000..1506c9d --- /dev/null +++ b/ReactiveCocoaIO/ReactiveCocoaIO.h @@ -0,0 +1,13 @@ +// +// ReactiveCocoaIO.h +// ReactiveCocoaIO +// +// Created by Uri Baghin on 14/01/2013. +// Copyright (c) 2013 Enthusiastic Code. All rights reserved. +// + +#import + +@interface ReactiveCocoaIO : NSObject + +@end diff --git a/ReactiveCocoaIO/ReactiveCocoaIO.m b/ReactiveCocoaIO/ReactiveCocoaIO.m new file mode 100644 index 0000000..f74d8d8 --- /dev/null +++ b/ReactiveCocoaIO/ReactiveCocoaIO.m @@ -0,0 +1,13 @@ +// +// ReactiveCocoaIO.m +// ReactiveCocoaIO +// +// Created by Uri Baghin on 14/01/2013. +// Copyright (c) 2013 Enthusiastic Code. All rights reserved. +// + +#import "ReactiveCocoaIO.h" + +@implementation ReactiveCocoaIO + +@end diff --git a/ReactiveCocoaIOTests/ReactiveCocoaIOTests-Info.plist b/ReactiveCocoaIOTests/ReactiveCocoaIOTests-Info.plist new file mode 100644 index 0000000..72d6bc9 --- /dev/null +++ b/ReactiveCocoaIOTests/ReactiveCocoaIOTests-Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + com.enthusiasticcode.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/ReactiveCocoaIOTests/ReactiveCocoaIOTests.h b/ReactiveCocoaIOTests/ReactiveCocoaIOTests.h new file mode 100644 index 0000000..b3bc32e --- /dev/null +++ b/ReactiveCocoaIOTests/ReactiveCocoaIOTests.h @@ -0,0 +1,13 @@ +// +// ReactiveCocoaIOTests.h +// ReactiveCocoaIOTests +// +// Created by Uri Baghin on 14/01/2013. +// Copyright (c) 2013 Enthusiastic Code. All rights reserved. +// + +#import + +@interface ReactiveCocoaIOTests : SenTestCase + +@end diff --git a/ReactiveCocoaIOTests/ReactiveCocoaIOTests.m b/ReactiveCocoaIOTests/ReactiveCocoaIOTests.m new file mode 100644 index 0000000..1d91f1a --- /dev/null +++ b/ReactiveCocoaIOTests/ReactiveCocoaIOTests.m @@ -0,0 +1,32 @@ +// +// ReactiveCocoaIOTests.m +// ReactiveCocoaIOTests +// +// Created by Uri Baghin on 14/01/2013. +// Copyright (c) 2013 Enthusiastic Code. All rights reserved. +// + +#import "ReactiveCocoaIOTests.h" + +@implementation ReactiveCocoaIOTests + +- (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 ReactiveCocoaIOTests"); +} + +@end diff --git a/ReactiveCocoaIOTests/en.lproj/InfoPlist.strings b/ReactiveCocoaIOTests/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/ReactiveCocoaIOTests/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ +