Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
burczyk committed May 5, 2013
0 parents commit 3e01b26
Show file tree
Hide file tree
Showing 8 changed files with 520 additions and 0 deletions.
418 changes: 418 additions & 0 deletions AFAbstractRESTClient.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions AFAbstractRESTClient/AFAbstractRESTClient-Prefix.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'AFAbstractRESTClient' target in the 'AFAbstractRESTClient' project
//

#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif
13 changes: 13 additions & 0 deletions AFAbstractRESTClient/AFAbstractRESTClient.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// AFAbstractRESTClient.h
// AFAbstractRESTClient
//
// Created by Kamil Burczyk on 05.05.2013.
// Copyright (c) 2013 Kamil Burczyk. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface AFAbstractRESTClient : NSObject

@end
13 changes: 13 additions & 0 deletions AFAbstractRESTClient/AFAbstractRESTClient.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// AFAbstractRESTClient.m
// AFAbstractRESTClient
//
// Created by Kamil Burczyk on 05.05.2013.
// Copyright (c) 2013 Kamil Burczyk. All rights reserved.
//

#import "AFAbstractRESTClient.h"

@implementation AFAbstractRESTClient

@end
22 changes: 22 additions & 0 deletions AFAbstractRESTClientTests/AFAbstractRESTClientTests-Info.plist
Original file line number Diff line number Diff line change
@@ -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>burczyk.kamil.${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 AFAbstractRESTClientTests/AFAbstractRESTClientTests.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// AFAbstractRESTClientTests.h
// AFAbstractRESTClientTests
//
// Created by Kamil Burczyk on 05.05.2013.
// Copyright (c) 2013 Kamil Burczyk. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface AFAbstractRESTClientTests : SenTestCase

@end
32 changes: 32 additions & 0 deletions AFAbstractRESTClientTests/AFAbstractRESTClientTests.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// AFAbstractRESTClientTests.m
// AFAbstractRESTClientTests
//
// Created by Kamil Burczyk on 05.05.2013.
// Copyright (c) 2013 Kamil Burczyk. All rights reserved.
//

#import "AFAbstractRESTClientTests.h"

@implementation AFAbstractRESTClientTests

- (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 AFAbstractRESTClientTests");
}

@end
2 changes: 2 additions & 0 deletions AFAbstractRESTClientTests/en.lproj/InfoPlist.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

0 comments on commit 3e01b26

Please sign in to comment.